git-crash-course

This is a basic html repository for the git crash course.

Development Guide

  1. Clone the repository: git clone https://github.com/conrad-blucher-institute/git-crash-course.git
  2. Create a new branch: git checkout -b <branch-name>
  3. Make changes to the code
  4. Add the changes to the staging area: git add .
  5. Commit the changes: git commit -m "commit message"
  6. Push the changes to the remote repository: git push origin <branch-name>
  7. Create a pull request on GitHub
  8. Have an approved review
  9. Merge the pull request
  10. Delete the branch

Release

  1. On github interface, click "create new release"
  2. Enter the tag version (e.g. v1.0.0)
  3. Enter the release title (e.g. v1.0.0)
  4. Enter the release description (e.g. This is the first release)
  5. Click "publish release"