This is a basic html repository for the git crash course.
- Clone the repository:
git clone https://github.com/conrad-blucher-institute/git-crash-course.git
- Create a new branch:
git checkout -b <branch-name>
- Make changes to the code
- Add the changes to the staging area:
git add .
- Commit the changes:
git commit -m "commit message"
- Push the changes to the remote repository:
git push origin <branch-name>
- Create a pull request on GitHub
- Have an approved review
- Merge the pull request
- Delete the branch
- On github interface, click "create new release"
- Enter the tag version (e.g. v1.0.0)
- Enter the release title (e.g. v1.0.0)
- Enter the release description (e.g. This is the first release)
- Click "publish release"