Guest User

Untitled

a guest
Feb 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. ## setup
  2. git config user.name "Siddhartha Reddy"
  3. git config user.email ""
  4.  
  5. ## setup -- global
  6. git config --global user.name "Siddhartha Reddy"
  7. git config --global user.email ""
  8. git config --global color.branch "auto"
  9. git config --global color.status "auto"
  10. git config --global color.diff "auto"
  11. git config --global color.ui "auto"
  12.  
  13.  
  14. ## pushing existing git repo to a newly-created one
  15. cd existing_git_repo
  16. git remote add origin new_git_repo_url
  17. git push origin master
Add Comment
Please, Sign In to add comment