Skip to content

Instantly share code, notes, and snippets.

@benbalter
Created January 20, 2012 15:58
Show Gist options
  • Save benbalter/1647995 to your computer and use it in GitHub Desktop.
Save benbalter/1647995 to your computer and use it in GitHub Desktop.
git/svn Cheatsheet
# 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