Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 824 Bytes

git-tutorial.md

File metadata and controls

13 lines (10 loc) · 824 Bytes

Git tutorial

We're following basic GitHub Flow. If you have ever contributed to an open source project on GitHub, you probably know it already - if you have no idea what we're talking about, check out GitHub's official guide. Here's a quick summary:

  • Fork the repository and clone to your local machine
  • You should already be on the default branch master - if not, check it out (git checkout master)
  • Create a new branch for your template (`git checkout -b my-new-image-version)
  • Write your template
  • Stage the changed files for a commit (git add .)
  • Commit your files with a useful commit message (git commit)
  • Push your new branch to your GitHub Fork (git push origin my-new-image-version)
  • Visit this repository in GitHub and create a Pull Request.