For Hacktoberfest workshop 2018 participants to make their first pull requests
-
Fork the repository
-
Clone your forked repository to download it
$ git clone https://github.com/*your-username*/hacktoberfest-workshop-2018
-
Navigate into the created folder
$ cd hacktoberfest-workshop-2018
-
Make some changes (add a fortune to fortune.py!)
-
Stage changes for commit
$ git add filename
(or, to stage all files)
$ git add .
-
Commit changes
$ git commit -m “Commit message”
-
Push changes to forked repo
$ git push
-
Create a pull request