Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 488 Bytes

File metadata and controls

33 lines (22 loc) · 488 Bytes
  • install git
sudo apt-get install git
  • 'fork' github repo (ONCE!)
  • 'clone' github repo to your machine (ONCE!)
git clone https://github.com/huybv1998/os2018.git
  • 'change' on your local repo <--- I have done using my text editor

  • 'add' files to a commit

git add README.md
  • make a 'commit'
git commit -m "Message that I want to use to describe the changes"
  • 'push' your commit to github
git push origin master