Tag: git cheatsheet
-
GIT Cheat sheet – Study Notes
What is version control? What is Git? File states Tracked (Unmodified, Modified, Staged), Untracked Restoring files git restore . git checkout . Ignore files why? sensitive info, personal notes, system file Using .gitignore Git log -p By adding the option -p, all changes are shown in the history. What key closes the commit log view?…