Looking to contribute to this project ? All valid PRs are welcome.
Follow these steps to set your local repository up and start contributing :
- Fork this repository.
- Clone the forked repository :
git clone https://github.com/<YOUR_USERNAME>/rake_new2.git
- cd to the directory on your local machine :
cd rake_new2
- Add upstream :
git remote add upstream https://github.com/BALaka-18/rake_new2.git
- Checkout to the DWOC branch :
git checkout DWOC-contributions
- That's it ! You're all set to go !
Make sure before you start making changes locally, you pull the code from the upstream everytime to make sure your local repository (remote) is even with the original repository (upstream).
Command to pull code : git pull origin <BRANCH_NAME>
(For now, the branch name will be DWOC-contributions
)
NOTE : MAKE SURE YOU'VE FOLLOWED THE FILE NAMING OR FOLDER NAMING CONVENTIONS
To make a PR, just follow these steps :
a. Stage your changes : ```git add .```
b. Commit your changes : ```git commit -m "<proper commit message>"```
c. Push them to your forked repository : ```git push origin DWOC-contributions```
d. Go to your forked repository and refresh, you'll receive a prompt to create a PR. Make sure you write a proper PR description, else, your PR will be rejected.
e. Wait for the maintainer to review your PR.