Removed all old bash cruft, supporting only zsh now. Improved README
This commit is contained in:
12
gitconfig
12
gitconfig
@@ -11,13 +11,13 @@
|
||||
old = red bold
|
||||
new = green bold
|
||||
[alias]
|
||||
d = diff # show unstaged changes
|
||||
dc = diff --cached # show staged changes
|
||||
last = diff HEAD^ # show last committed change
|
||||
unstage = reset HEAD # remove files from index (tracking)
|
||||
d = diff # show unstaged changes
|
||||
dc = diff --cached # show staged changes
|
||||
last = diff HEAD^ # show last committed change
|
||||
unstage = reset HEAD # remove files from index (tracking)
|
||||
uncommit = reset --soft HEAD^ # go back before last commit, with files in uncommitted state
|
||||
chunkyadd = add --patch # stage commits chunk by chunk
|
||||
filelog = log -u # show changes to a file
|
||||
chunkyadd = add --patch # stage commits chunk by chunk
|
||||
filelog = log -u # show changes to a file
|
||||
amend = commit --amend
|
||||
ammend = commit --amend
|
||||
mt = mergetool #fire up the merge tool
|
||||
|
||||
Reference in New Issue
Block a user