Removed all old bash cruft, supporting only zsh now. Improved README

This commit is contained in:
yan
2011-12-06 21:57:45 -08:00
committed by Yan Pritzker
parent 0b8c86ccd5
commit 9fabecb0fa
22 changed files with 106 additions and 3501 deletions

View File

@@ -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