Created
August 28, 2020 09:08
-
-
Save rashid327/0acf2cc3ee6e262a9286093c89dc2b4f to your computer and use it in GitHub Desktop.
git branch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a new branch | |
$ git branch <branch_name> | |
# List all remote or local branches | |
$ git branch -a | |
# Delete a branch | |
$ git branch -d <branch_name> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment