Guest User

Untitled

a guest
Jan 16th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. # delete
  2. git branch -d <branch>
  3. # rename
  4. git branch -m <oldname> <newname>
  5. or
  6. git branch -m <newname>
  7.  
  8. # force pull
  9. git fetch --all
  10. git reset --hard origin/master
Add Comment
Please, Sign In to add comment