Guest User

Untitled

a guest
Jan 23rd, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. # Check out remote branch
  2. git checkout -b <local-branch-name> <remote>/<remote-branch-name>
  3.  
  4. # Delete local branch
  5. git branch -D <local-branch-name>
  6.  
  7. # Create new local branch
  8. git branch <local-branch-name>
  9.  
  10. # Push to a new remote branch
  11. git push <remote> <remote-branch-name>
Add Comment
Please, Sign In to add comment