Skip to content

Latest commit

 

History

History
34 lines (18 loc) · 647 Bytes

README.md

File metadata and controls

34 lines (18 loc) · 647 Bytes

hacktoberfest-workshop-2018

For Hacktoberfest workshop 2018 participants to make their first pull requests

Pull request steps

  1. Fork the repository

  2. Clone your forked repository to download it

    $ git clone https://github.com/*your-username*/hacktoberfest-workshop-2018

  3. Navigate into the created folder

    $ cd hacktoberfest-workshop-2018

  4. Make some changes (add a fortune to fortune.py!)

  5. Stage changes for commit

    $ git add filename

    (or, to stage all files)

    $ git add .

  6. Commit changes

    $ git commit -m “Commit message

  7. Push changes to forked repo

    $ git push

  8. Create a pull request