Git challenge to learn the key git commands. Just add your name to the guestbook file!
You'll need to:
- Create an access token
- Clone the repo and use your access token for authorisation
- Create a branch
- Add your name to guestbook.md and save the file
add
the guestbook.md file (this step is also known as 'staging')commit
your changepush
your branch to the remote repo- Because you have made your branch locally on your computer, but it doesn't exist in the remote repo, you might get an error here. If you do, don't worry! Git will tell you the command you should use instead. It will look something like this:
git push --set-upstream origin your-branch-name
. Just copy and paste this command into the terminal and run it. - Create a Pull Request for your change to be merged into the main branch
- Request a reviewer for your pull request