Skip to content

Latest commit

 

History

History
63 lines (36 loc) · 1.52 KB

CONTRIBUTING.md

File metadata and controls

63 lines (36 loc) · 1.52 KB

Contributing

Before following the below steps you have to make sure that git is installed on your local machine. If not then you can install git for your operating system from here.

1. Fork the repository

image

2. Clone your Fork

Copy your remote's url. Remote is git's fancy way of referencing to a place where your code is stored.

git clone git@github.com:<your_github_username>/starter.git # please clone according to your remote url

image


⭐ After cloning the repository open the respective folder in some text editor, preferably VS Code.
Then run the below commands.

3. Create a new branch and check it out

git checkout -b <branch-name>

4. Follow this tutorial to make some changes in the cloned repository.

5. Add your changes once the tutorial is done

git add .

6. See your staged changes

git status

7. Commit your Changes

git commit -m <write commit message inside quotes>

8. Push to the Branch

git push -u origin <branch-name>

9. Open a Pull Request from your github fork of this repository

image