Created
January 20, 2012 15:58
-
-
Save benbalter/1647995 to your computer and use it in GitHub Desktop.
git/svn Cheatsheet
This file contains 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
# ADD ALL FILES (Recursively): | |
svn add --force * | |
# Remove deleted files: | |
svn status | grep '^\!' | cut -c8- | while read f; do svn rm "$f"; done | |
# HTTPS workaround: | |
env GIT_SSL_NO_VERIFY=true git clone | |
# Ultimate Log | |
git log --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment