show-stages
2024-03-28
git
softwares-and-tools
stage
ref: https://stackoverflow.com/questions/1587846/how-do-i-show-the-changes-which-have-been-stagedgit diff # show unstaged but tracked
git diff --cached # show staged
git diff HEAD # show staged and unstaged (till last commit)
git diff --name-only --cached # show file names onl