Skip to content

Commit 81206b9

Browse files
Step 5, How to work with a particular branch
Added 5. If you have created another branch and want to use that branch git clone your_git_repository_url git checkout -b your_branch_name git add - A git commit -m “Your comment” git push origin your_branch_name
1 parent 16b2a06 commit 81206b9

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,11 @@ git fetch
2626
git merge
2727
git pull
2828
```
29+
5. If you have created another branch and want to use that branch
30+
`````
31+
git clone your_git_repository_url
32+
git checkout -b your_branch_name
33+
git add - A
34+
git commit -m “Your comment”
35+
git push origin your_branch_name
36+
`````

0 commit comments

Comments
 (0)