Guest User

Untitled

a guest
May 26th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. ```
  2. $ git init
  3.  
  4. $ git status
  5.  
  6. $ git add
  7.  
  8. $ git diff
  9.  
  10. $ git remote add origin <server>
  11.  
  12. $ git commit -m"<message>"
  13.  
  14. $ git push origin master
  15.  
  16. $ git branch
  17.  
  18. $ git checkout <branch_name>
  19.  
  20. $ git branch -d <branch_name>
  21.  
  22. $ git merge <branch_name>
  23.  
  24. ```
Add Comment
Please, Sign In to add comment