handy_git_commands

This is an old revision of the document!


Handy Git Commands

See Changes

Show names of files that changed between last commit and the working directory.

git diff --name-only HEAD

Show names of files that changed between the last two commits.

git diff --name-only HEAD HEAD~1

concise one-line log

git log --pretty=format:"%h%x09%an%x09%ad%x09%s"
  • handy_git_commands.1700070640.txt.gz
  • Last modified: 2023/11/15 17:50
  • by mgupton