Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 248 Bytes

guide_to_git.md

File metadata and controls

10 lines (8 loc) · 248 Bytes

Guide To Common Git Commands

Pulling and pushing to remote

In order to pull changes from the remote server
  • git pull
In order to push changes to the remote server
  • git add .
  • git commit -m "your commit message here"
  • git push