This repository is meant to introduce the students on how to work collaboratively with other people on GitHub.
- Fork this repository
- Clone your forked repository
- Enter the directory with
cd playground
- Create a new branch with
git checkout -b mybranch
- Add a new file with your name in the assignment 1 folder
- Type your name in the file
- Commit your changes with
git add assignment1/filename
andgit commit -m "added my name message"
, change the message accordingly - Push your changes to your forked repository with
git push -u origin mybranch
. The-u
creates the branch in the forked repository if it doesn't exist - Create a Pull Request to the original repository