This repository aims at providing guidance & simplifying the way beginners make their first contribution. If you are looking forward to make your first contribution, follow the steps below. If you don't have git installed on your machine then, install it.
Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your github account.
Now clone the forked repository to your device. Click on the clone button and copy to your clipboard. Open terminal and write command "git clone {url you just copied}"
e.g. if you copied url "https://github.com/mstc/mstc.git" then command will look like this
git clone https://github.com/mstc/mstc.git
go to directory where you clonned the repo if you aren't already. Create branch using git checkout command
git checkout -b add-dhyey
(we recommend you to name branch add-{your name} for making logical name)
In contributers.md file add your name, github profile link (optional: do tell us why you are excited about open source)
write "git status" command for checking status. to stage your changes
git add contributers.md
to commit these changes
git commit -m "add dhyey to Contributors list"
(use your name in commit message)
write this command to push changes but use name of your branch
git push origin add-dhyey
for example if name of your branch is add-vrushti then write "git push origin add-vrushti"
If you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button. Submit pull request with proper title and comments if you wanna add
Congratulations you created your first PR successfully. We will merger your PR with repo and that would be all for 1st PR.
This is beginning there is lot to explore do connect with us if you have any queries.