Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 310 Bytes

File metadata and controls

6 lines (5 loc) · 310 Bytes

Branches

  • git checkout -b newBranchName It will make a new branch and will direct you to this branch.
  • git checkout branchName It will take you from other branch to this branch.
  • git branch it will display your all branches
  • git merge branchname it will merge your branch in the current branch.