Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 231 Bytes

readme.md

File metadata and controls

15 lines (8 loc) · 231 Bytes

creating a branch

git checkout -b [branch name]

verifying the branches

git branch

returning to previous branch

git checkout [branch name]

creating the merge; for this, it needs a master (main)

git merge [branch name]