[READ-ONLY] Mirror of https://github.com/mrgnw/git. git config
0

Configure Feed

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

ignore user

+19 -8
+1
.gitignore
··· 1 + user
+2 -2
README.md
··· 14 14 15 15 `file:.git/config`: That's the local repo's config! ([docs](https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup)) 16 16 17 - ### See alos 17 + ### See also 18 18 19 - Pulled a lot from [GitAlias/gitalias](GitAlias/gitalias). 19 + Pulled a lot from [GitAlias/gitalias](https://github.com/GitAlias/gitalias).
+12
alias
··· 4 4 # aliases = open this 5 5 6 6 a = add 7 + 7 8 b = branch 8 9 # b = git checkout -b 10 + 11 + # clear_merged = f(){ 12 + # git branch -d $(git branch --merged=master | grep -v master) 13 + # } 14 + 15 + # extract_untracked() { 16 + # rsync -R $(git ls-files --others) "$1" 17 + # git clean -f 18 + # } 19 + 9 20 c = commit 21 + 10 22 d = diff 11 23 f = fetch 12 24 g = grep
+4 -6
config
··· 1 - [core] 2 - excludesfile = ignore 1 + [core] excludesfile = ignore 3 2 [include] 4 3 path = alias 5 4 path = user 6 - [diff] 7 - tool = meld 8 - [difftool] 9 - prompt = false 5 + [diff] tool = meld 6 + [difftool] prompt = false 7 + 10 8 [filter "lfs"] 11 9 clean = git-lfs clean -- %f 12 10 smudge = git-lfs smudge -- %f
user

This is a binary file and will not be displayed.