Difference between revisions of "Git branch"
Jump to navigation
Jump to search
Tags: Mobile web edit, Mobile edit |
Tags: Mobile web edit, Mobile edit |
||
Line 57: | Line 57: | ||
== Change to a branch == | == Change to a branch == | ||
* <code>[[git checkout]] your-existing-branch</code> | * <code>[[git checkout]] your-existing-branch</code> | ||
+ | |||
+ | == Activities == | ||
+ | * [[Create git branch with current changes]] | ||
== Related commands == | == Related commands == |
Revision as of 09:14, 20 March 2023
git branch
list, create, or delete branches.
git branch * main
git branch -l git branch -a git branch -d git branch -r
Create a new branch or change branch:
git branch new_branch
git checkout new_branch
git branch your-existing-branch
or
git branch * mynewbranch master
git branch --list or git branch -l * main
git branch --list --remotes
git branch --all
git branch -r origin/HEAD -> origin/main origin/main origin/master
git branch --unset-upstream (no output)
git branch --set-upstream-to=origin/<branch> main
git branch --set-upstream-to=origin/main main
Contents
Rename branch
git checkout -f yourbranch git branch -M yourNewBranch
Delete branch
git branch --delete branch_name git branch --delete --force branch_name
Get current branch name
git rev-parse --abbrev-ref HEAD
git branch
Change to a branch
git checkout your-existing-branch
Activities
Related commands
See also
git switch
git branch
,git: upstream
,git branch --delete branch name
,[ --list | -a | -r | -M ]
Advertising: