Skip to main content

Creating Branches In git?

Creating Branches In git?

1)git checkout -b newbranchname
2)git add .
3)git commit -m "first commit on new branch"
4)git push origin newbranchname

Switching from one branch to another branch
git checkout branchname

Localchanges not requires
git stash

Conflict with git merges
1)git stash
2)git pull
3)git stash pop

git merge branchname

Git checkout with master
git chekout master

Checking the git branch

 git branch

git pull = git fetch + git merge 
Git update the only for particular commits
git cherry-pick gitcommitid
Change mode  permissions for file
chmod 600 filename


Comments