Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 2.06 KB

README.md

File metadata and controls

16 lines (13 loc) · 2.06 KB

git-challenge

Git challenge to learn the key git commands. Just add your name to the guestbook file!

You'll need to:

  1. Create an access token
  2. Clone the repo and use your access token for authorisation
  3. Create a branch
  4. Add your name to guestbook.md and save the file
  5. add the guestbook.md file (this step is also known as 'staging')
  6. commit your change
  7. push your branch to the remote repo
  8. 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.
  9. Create a Pull Request for your change to be merged into the main branch
  10. Request a reviewer for your pull request