Search code examples
gitgit-push

git push just add last commit message in server but I want all


I do multiple commit in my local pc then when push them to git server it just show last commit message but I want to see all of them. How can I do that?


Solution

  • git log will show you all the commit messages on your current branch.

    git log remotes/origin/master will show you all the commit messages for your remote branch master on origin.