Section2 Lectures Description 1. Git Commands 2. VIM Commands 3. Github Action Git Commands list of important git commands git init git status git add . git commit git commit -am "COMMIT_MSG_HERE" git log git pull git branch -l git branch -D BRANCH_NAME git checkout BRANCH_NAME git checkout -B BRANCH_NAME git stash git stash pop git stash push git stash list git merge BRANCH_NAME git cherry-pick COMMIT_SHA git pull --rebase git pull --no-rebase git reset --soft COMMIT_SHA git reset --hard COMMIT_SHA git push --force Vim Commands gg - G - 5G - ff - p - dd - :w :q :!q :set number vim has three modes command mode insert mode extended mode