Answers for "create new branch without losing changes"

1

create new branch without losing changes

git checkout -b new_branch_name
Posted by: Guest on February-23-2022
1

create new branch without losing changes

Creating a new branch ( git checkout -b newbranch ) is always considered "safe": no files will be added, removed, or altered in the work-tree as part of this process, and the index/staging-area is also untouched.
Posted by: Guest on February-17-2022

Code answers related to "create new branch without losing changes"

Browse Popular Code Answers by Language