How to git diff without typing the whole path

前端 未结 4 661
太阳男子
太阳男子 2020-12-30 21:28

I\'m using the github windows shell and I\'ll do the following

git status

see a list of modified files and want to remind myself what\'s ch

4条回答
  •  灰色年华
    2020-12-30 22:13

    If you want to review all changes, you can simply use git diff. It will not list new files, though.

    To selectively look at changes, I would recommend to use a GUI, e.g., git gui or gitk.

提交回复
热议问题