🎉First off All, thanks for taking the time out of your schedule and deciding to contribute here!👍
If you're new to contributing and have no idea about working with repositories, be sure to check GitHub docs to getting started from GitHub may also be helpful to refer.
If you don't have git on your machine, install it.
Step by step details for sending a Pull Request-
To Fork the Repo on GitHub, please click on the Fork button at the top right corner of the page.
Once you are in the Fork, please click on the Code button displayed in green.
Once the Code window has opened, please click on the Copy button.
Now we need to open the Terminal. Once the Terminal window opens, you will be able to see the user name and the corresponding path of the folder. The cursor will be by default pointing there. Please write git clone <URL>
where the cursor will be pointing and then paste the link that was previously copied.
Change directory to Nature Beauty: cd Nature_Beauty
.
Make a new branch using the command git checkout -b <branch name>
.
Make Changes to the required files in the local folder. Check status of the changed files using git status
.
Send the required file to the staging area using git add <file_names>
.
Make a commit: git commit -m <commit message>
.
Push the changes to GitHub using git push origin <branch name>
.
Click on 'compare & pull request' on GitHub.