Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 425 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 425 Bytes

Open Source 101: Git Involved with GitHub

Git is awesome!

Git 101

  • git clone <url> = copy repository from url
  • git checkout -b <new-branch-name> = new branch
  • git add -A = Mark everything for commit
  • git commit
  • git pull --rebase upstream master
  • git push origin <branch-name>