DEV Community

Umesh
Umesh

Posted on

Git Branch and Git Merge

git branch
git checkout -b
git status
git add . or git add
git commit -m "type your message here"
git push --set-upstream origin
git push

-- when required
git config --local user.email ""
git config --local user.name ""

git checkout main
git merge
git pull
git push

git pull

Top comments (0)