Skip to content

Instantly share code, notes, and snippets.

@djGrill
Last active February 23, 2023 10:42
Show Gist options
  • Save djGrill/6882556 to your computer and use it in GitHub Desktop.
Save djGrill/6882556 to your computer and use it in GitHub Desktop.
This is what you should do every morning
  • commit all the classwork and homework files from yesterday (you can do as many commits as you want):

    git add <files>

    git commit -m "COMMIT MESSAGE"

  • push to GitHub:

    git push origin wXdY-gitusername

  • don't forget to Pull Request!

  • create and checkout into new branch for today:

    git checkout -b wXdY-gitusername

  • create directory for today:

    mkdir wXdY

  • cd into the new directory:

    cd wXdY

  • create readme.md file:

    touch readme.md

  • create classwork and homework directories:

    mkdir classwork

    mkdir homework

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