$ git clone https://github.com/DeepEM-Lab/training.git
- You should see a new folder is being downloaded.
$ cd training
- Nevigate to the training folder.
$ git checkout -b [breanch name]
$ git stage -A
- Make sure it's uppercase 'A'
$ git status
- You should see a list of files are being added.
$ git commit -m "[message]"
$ git log
- You should see your most recent commit messages.
$ git push --set-upstream origin [branch name]
- Click "Pull Requests" on the GitHub website
- click "New Pull Request" on the top right
- Set the base branch to "main", set the compare branch to the branch you created.
- click "Create Pull Request" on the top right
- Fill in appropriate titles and messages.
- Create the pull request!

