Answers for "git create branch from local changes"

3

create branch with local changes

# Update 2020 / Git 2.23
git switch -c <new-branch>

# Before Update 2020 / Git 2.23
git checkout -b new_branch_name
Posted by: Guest on July-20-2021

Code answers related to "git create branch from local changes"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language