Skip to content

Git Guide

ROSimplify edited this page Apr 4, 2020 · 1 revision

How Does Git Work?


[Credits: Oliver Steele]

Updating entire repo

  • git checkout master
  • git add .
  • git commit -m "note"

Deleting Files in terminal

  • git checkout master
  • git rm-r folder-name
  • git commit -m "note"
  • git push origin master
Clone this wiki locally