• Basic workflow
    • Create a repo online with a README
    • Upload files from local host
    • git clone [url] to create the local git repo
    • git add <filename> for a single file
    • git add -A for adding everything
    • git commit -m "[Insert a brief summary of your changes]" to commit
    • git status will show files “staged for commit.
    • git pull for the most up to date version of the repository
    • git push origin master to upload new files to the remote repository
  • Other resources

Last modified: 2017-12-31