1
0
Fork 0
mirror of https://github.com/hcartiaux/dotfiles.git synced 2024-10-18 17:25:23 +02:00

[git] Alias undo-commit

This commit is contained in:
Hyacinthe Cartiaux 2013-07-19 15:04:48 +02:00
parent 2874c92635
commit 1bf7c719f8

View file

@ -35,6 +35,7 @@
unstage = reset HEAD --
last = log -1 HEAD
amend = commit --amend
undo-commit = reset --soft HEAD^
# From http://j.shirley.im/tech/git-flow/
feature-start = !git flow feature start $1
feature-finish = !git flow feature finish $1 && git push