Guest User

Untitled

a guest
May 20th, 2018
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. Global setup:
  2. Download and install Git
  3. git config --global user.name "Your Name"
  4. git config --global user.email a.pipkin@skylermedia.com
  5. Add your public key
  6.  
  7. Next steps:
  8. mkdir Echofin
  9. cd Echofin
  10. git init
  11. touch README
  12. git add README
  13. git commit -m 'first commit'
  14. git remote add origin git@github.com:apipkin/Echofin.git
  15. git push origin master
  16.  
  17. Existing Git Repo?
  18. cd existing_git_repo
  19. git remote add origin git@github.com:apipkin/Echofin.git
  20. git push origin master
  21.  
  22. Importing a Subversion Repo?
  23. Click here
  24.  
  25. When you're done:
  26. Continue
Add Comment
Please, Sign In to add comment