Essential Git Commands Cheat Sheat 2025
Essential Git Commands Cheat Sheat 2025
git add
git status
git stash: temporarily saves changes that are not yet ready to be committed.
git stash
git remote -v
git show: used to display information about the commit with the ID. It shows the commit
message, author, date, and changes made in the commit.
git whatchanged: used to display the commit history along with the changes made in each
commit. It shows the commit message, author, date, and file changes.
git whatchanged
marwa jellali