Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 277 Bytes

github.md

File metadata and controls

10 lines (10 loc) · 277 Bytes

Github

General Github Workflow

  1. Run once
    1. git init
    2. git remote add origin <github url>
  2. Loop
    1. Add changes git add
    2. Commit changes git commit -m "<messages>"
    3. Repeat step 1 and 2
    4. git push origin master