Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 4th, 2012  |  syntax: None  |  size: 0.62 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Global setup:
  2.  Download and install Git
  3.   git config --global user.name "Your Name"
  4.   git config --global user.email lordkainzo@hotmail.com
  5.   Add your public key
  6.        
  7. Next steps:
  8.   mkdir HeroMagic
  9.   cd HeroMagic
  10.   git init
  11.   touch README
  12.   git add README
  13.   git commit -m 'first commit'
  14.   git remote add origin git@github.com:Herocraft/HeroMagic.git
  15.   git push -u origin master
  16.      
  17. Existing Git Repo?
  18.   cd existing_git_repo
  19.   git remote add origin git@github.com:Herocraft/HeroMagic.git
  20.   git push -u origin master
  21.      
  22. Importing a Subversion Repo?
  23.   Click here
  24.      
  25. When you're done:
  26.   Continue