Display last git commit comment

前端 未结 10 675
南旧
南旧 2020-12-02 03:36

Often during a commit ($ git -commit -m \"\"), I wish to read my last comment to remember what progress I have made. Is there an easy way to directly access the

10条回答
  •  温柔的废话
    2020-12-02 04:27

    Generally:

    git log -n
    

    will show you the last n commit messages

    More elegantly - if you want a quick overview of your commits

    git log --oneline -n
    

    This will Show just the first line of the last n commit messages.

    You can save this as a git alias or a shell alias with a shorter command. I've got it in my shell as glog, for example, and I can see my last 10 commit messages with glog -10.

提交回复
热议问题