this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Do not diff.suppressBlankEmpty as this collides with a lot of tooling

+8 -5
+5 -2
git/.config/git/config
··· 1 1 [core] 2 - pager = "/usr/local/share/git-core/contrib/diff-highlight/diff-highlight | less --tabs=4 -RFX" 3 2 commitGraph = true 4 3 [gc] 5 4 writeCommitGraph = true ··· 24 23 skip = update-index --skip-worktree 25 24 unskip = update-index --no-skip-worktree 26 25 publish = push -u hauleth 26 + cleaner = !git branch --merged master | grep -v '^[ *]*master$' | xargs -r git branch -d 27 27 28 28 [mergetool] 29 29 keepBackup = false ··· 66 66 enabled = true 67 67 68 68 [diff] 69 - suppressBlankEmpty = true 69 + ; suppressBlankEmpty = true 70 70 indentHeuristic = true 71 71 algorithm = histogram 72 72 mnemonicPrefix = true ··· 74 74 [color.diff] 75 75 old = blue 76 76 new = yellow 77 + 78 + [pack] 79 + useSparse = true 77 80 78 81 # vim: ft=gitconfig noexpandtab
+3 -3
git/.config/git/ignore
··· 60 60 # Other {{{ 61 61 .rake_tasks 62 62 .meteor/ 63 - /tags 64 - /tags.* 63 + tags 64 + tags.* 65 65 .gdb_history 66 66 perf.data* 67 - /oprofile_data 67 + oprofile_data 68 68 *.socket 69 69 .tool-versions-e 70 70 # }}}