Skip to content
QuantumNovice edited this page Nov 21, 2019 · 1 revision

Git Tutorial

  • Create Repository
git init
  • Add files to the repository.
git add .
  • Commit to local
git commit -m "my first commit"
  • Set upstream
git add remote upstream <url>
  • Push
git push upstream
Clone this wiki locally