GIT: working with local branches

LIST ALL LOCAL BRANCHES

@ my_project $ git branch
  clock
* copyright
  copyrights
  develop
  master




CREATE and SWITCH TO NEW branch DND

@ my_project $ git checkout -b DND
Switched to a new branch 'DND'





DELETE LOCAL BRANCH called DND

@ my_project $ git branch -D DND
Deleted branch DND (was 9a59234).

No comments:

Post a Comment