Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 476 Bytes

Git Commands.md

File metadata and controls

8 lines (7 loc) · 476 Bytes

Git Commands

  • git clone https://github.com/MUJ-ACM-SCHAP/Java.git - Download Java Repository
  • git add . - Add all changed files to git
  • git commit -m "Update Description" - Attach a commit message to the updates and confirm changes
  • git push -u origin master - Push all changes to the online repository (master branch)

If you come back after a few days and meanwhile, the online repository was updated, you need to update your local repository using git pull