InterviewSolution
| 1. |
How to create a new branch in git? |
|
Answer» 1)From the repository, click + in the global sidebar and select Create a branch under Get to WORK..
2) From the popup that appears, select a Type (if using the Branching model), ENTER a Branch name and click Create... 3) After you create a branch, you need to check it out from your local system. Use the fetch and checkout commands that Bitbucket PROVIDES, similar to the following: $ git fetch && git checkout 4) Make your changes locally and then add, COMMIT, and push your changes to the $ git add . $ git commit -m "adding a change from the feature branch" $ git push origin 5) Click the Source page of your repository. You should see both the master and the Hope you understood.. Mark it as brainliest answer |
|