Created
July 6, 2024 21:52
-
-
Save abhitrueprogrammer/338922cdf4535123cf39958031370241 to your computer and use it in GitHub Desktop.
Branching
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
git branch <branch_name> -> Create branchname | |
git checkout <branch_name> -> Checkout branchname | |
git branch -> list branches | |
git merge <branch_name> -> Merge branch with main | |
git branch -d <branch_name> -> Delete branched merged into main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment