Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 325 Bytes

git_study_notes.md

File metadata and controls

18 lines (10 loc) · 325 Bytes

Git study notes

Common Operations ###View all local and remote branch

git Branch -a

###Checkout remote branch

git Checkout -b localserverfix origin/remoteserverfix

###Push local branches to remote branch

git PUSH origin localserverfix:remoteserverfix

###Delete remote branch

git PUSH origin:remoteserverfix