To read more about hacktoberfest please follow this link
-
Fork the project, clone your fork:
# Clone your fork git clone https://github.com/<your-username>/my-first-hacktoberfest.git # Navigate to the newly cloned directory cd my-first-hacktoberfest.git
-
Create a branch for your PR
git checkout -b your-branch-name
Tip: Keep your
master
branch pointing at the original repository and make pull requests from branches on your fork. To do this, run:git remote add upstream https://github.com/mkamranhamid/my-first-hacktoberfest.git git fetch upstream git branch --set-upstream-to=upstream/master master
This will add the original repository as a "remote" called "upstream," Then fetch the git information from that remote, then set your local
master
branch to use the upstream master branch whenever you rungit pull
. Then you can make all of your pull request branches based on thismaster
branch. Whenever you want to update your version ofmaster
, do a regulargit pull
.
- Add your name below with the link to your github profile
- Commit your changes with a message
- Push your changes to your branch