changed aliases

work
Adam Veldhousen 2015-03-06 08:46:23 -06:00
parent 310ce3b59f
commit 81a7381fa7
2 changed files with 2 additions and 1 deletions

View File

@ -72,7 +72,7 @@ alias afk="/System/Library/CoreServices/Menu\ Extras/User.menu/Contents/Resource
alias mongodps="mongod --config /usr/local/etc/mongod.conf --fork --logpath ~/.docs/mongo.log"
# delete merged local branches
function dml(){
function prunelocal(){
for b in `git branch --merged | grep -v \*`; do git branch -D $b; done
}

View File

@ -1,5 +1,6 @@
[alias]
# View abbreviated SHA, description, and history graph of the latest 20 commits
lo = log --oneline -n 20 --graph
l = log --oneline -n 20 --graph --show-signature
# View the current working tree status using the short format
s = status -s