Note 1: If you've never made a pull request before, or participated in an open-source project, we recommend taking a look at this wonderful video tutorial. And if you want a more complete tutorial on using github, creating branches etc. , here's a detailed video series.Once you've got your feet wet, you're ready to come back and dive into Hacktoberfest fun!
Note 2: Super Important Only the pull requests created between October 1st, 2023 and October 31st, 2023 will be counted!
-
Star any repository. 😛
-
And then you have to fork (make a copy) of this repo to your Github account.
-
Clone (download) your fork to your computer.
-
git clone https://github.com/PCON-Hacktoberfest-2023/<repo_name>
-
cd <repo_name>
-
In above two command replace <repo_name> with the name of the repository you want to work on.
-
-
Set your streams so you can sync your clone with the original repo (get the latest updates)
-
git remote add upstream https://github.com/PCON-Hacktoberfest-2023/<repo_name>
-
git pull upstream main
-
The above 2 commands will synchronize your forked version of the project with the actual repository.
-
-
Make the changes in your branch. For eg. You're creating a navbar using ReactJS and your username is xyz so you've to follow the path /ReactJS/Navbar/xyz/[YOUR_REACT_FILE] and same goes with others.
-
Commit and push the code to YOUR fork.
-
Create a pull request to have the changes merged into the origin.