- Make edits and save in Vim
- Press i to enter insert mode
- Type your README content
- Press Esc to exit insert mode
- Type :
- Type wq! and press Enter to write + quit
- Validate the README changes saved
-
View the file quickly in terminal: o cat README.md
-
Check git status: o git status
- Stage, commit, and push README updates
- Stage: o git add README.md
- Commit: o git commit -m "Update README"
- Push: o git push
ALL DONE