Skip to content

Instantly share code, notes, and snippets.

@emsesc
Last active July 5, 2021 19:13
Show Gist options
  • Save emsesc/dd7f6bc45924583deaa7b815a69e8144 to your computer and use it in GitHub Desktop.
Save emsesc/dd7f6bc45924583deaa7b815a69e8144 to your computer and use it in GitHub Desktop.
Commands to update your course!
git checkout main
git pull origin main
git add .
git commit -m "Update progress"
git push origin main
git remote add upstream https://github.com/bitprj/intro-to-serverless
git fetch upstream main
git merge -X theirs --allow-unrelated-histories --squash upstream/main
git add .
git commit -m “Update progress”
git push origin main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment