Skip to content

Instantly share code, notes, and snippets.

@dropmeaword
Last active May 23, 2018 10:38
Show Gist options
  • Save dropmeaword/bf2dc31ca7cbf8a4e78b3ca4e60a9172 to your computer and use it in GitHub Desktop.
Save dropmeaword/bf2dc31ca7cbf8a4e78b3ca4e60a9172 to your computer and use it in GitHub Desktop.
This is the personal workflow that I explained in class

Your git(hub) workflow

Step #1: clone the repo you want to work on

git clone https://github.com/<myusername>/<myrepo>

Step #2: add your changes

git add my_changed_file.pde

This is how you add changes.

Step #3: commit your work

git commit -m “I did some work today”

Step #4: push your changes to the public

git push --all

You can at any time see the status of the folder containing your assets with this command git status

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment