To write- Insert After finishig writting- Esc To save & exit- :x
git add file.md // stored in local directory git push -u origin master // upload to the website
git status git log // initial commit
git commit -m "write new message in the file" git commit -F FileName.ext // show the text from file vim FileName.ext // access the file.
To change and upload a file:-
- vim FileName.ext //rewrite something in the file
- git commit FileName.ext 2.1. Write commit_message for committing
- git push -u origin master So you are DONE !!!