Created
February 4, 2012 02:20
-
-
Save ayust/1734518 to your computer and use it in GitHub Desktop.
An pseudo-implementation of "Subversion", via Git.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [alias] | |
| checkout=clone | |
| commit=commit -a && (push || reset HEAD~1) | |
| branch=false | |
| update=pull --squash -Sresolve | |
| merge=merge --squash -Sresolve | |
| add=add --intent-to-add | |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(Note that these aliases do not actually work, they are intent-descriptive only. This gist is purely for humor purposes.)