GIT

How to Get a List of All …

To find the name of all files modified since your last commit: 1git diff --name-only To list all …

How to Find Last Commit …

1# Alternative 1 2git log --format="%H" -n 1 3 4# Alternative 2 5git rev-parse HEAD 6 7# …

How to Find Commit …

to get this pretty cool format, we use --pretty parameter in git-cli. Find more details by running …