git

Git: merge

The following push command is to push “master” branch to remote “origin” repository. git push origin master   But this merge command is to merge  master branch of “local” repository. git merge origin/master   It’s troublesom. 🙁 To avoid mistakes,…