Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 558 Bytes

File metadata and controls

11 lines (10 loc) · 558 Bytes

Git Commands

  • git init initialize the project into git
  • git add <filename> will add the file to the staging area for git
  • git commit -m "This commit will... message" commits the project to git
  • git clone <SSH key> clones (which pulls) a project from github
  • git push pushes any changes to GitHub
  • git diff to see changes made before adding
  • git status to see the current status and get some help from terminal
  • git remote -v to check your current git remote origin connection
  • git remote remove origin to remove your connection