Basic commands Name Command config user git config --global user.name "your-username" config email git config --global user.email "your-email" list config git config --list show current branch git branch --show-current who last modified each line git blame Count file changes git status Three stages Stage Action modifying files work directory staged area git add local repository git commit list of the schema of the permissions for the files Permission Binary Decimal --- 000 0 --x 001 1 -w- 010 2 -wx 011 3 r-- 100 4 r-x 101 5 rw- 110 6 rwx 111 7 ---------- ------ ------- Topics basic add commit remote push branch checkout tag reset See documentation view... ###Thanks code.education for this knowledge acquired!