I am using VScode and git together and I am wondering whether there is a way or plugin to display the changes in UI in this PR before I git push
. The current vscode diff tool does not display changes after git commit
.
Asked
Active
Viewed 879 times
0

derek
- 9,358
- 11
- 53
- 94
-
Does this answer your question? [How to see the changes in a Git commit?](https://stackoverflow.com/questions/17563726/how-to-see-the-changes-in-a-git-commit) – ggorlen Sep 29 '20 at 22:20
-
git show
should do it – wishmaster Sep 29 '20 at 22:23 -
you can diff two commits `git diff HEAD HEAD~1` or any other way of specifying a commit, or use the git graph, click on HEAD and then on the files of the commit – rioV8 Sep 29 '20 at 23:26