tkaczanowski

git

Jan 3rd, 2012
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.29 KB | None | 0 0
  1. # git + svn based on http://learn.github.com/p/git-svn.html
  2. sudo apt-get install git-svn
  3. git svn clone file:///Users/blair/git-svn/SVNROOT git_repo
  4.  
  5. # git ignore
  6. vim .gitignore_global
  7.   *.iml
  8.   *.ipr
  9.   *.iws
  10. git config --global core.excludesfile ~/.gitignore_global
  11.  
  12. git diff origin/master
Advertisement
Add Comment
Please, Sign In to add comment