Basic commands needed for working with Git
For Windows users : Download git
For Linux users : sudo apt install git-all in Terminal
git --version
git config –-global user.name “name”
git config –-global user.email “name@email.com”
git init
git add *
git commit –m “message”
git remote add origin <link>
git push origin master
git add *
git commit –m “message”
git push origin master
Step 1: Fork the repo to your account
Step 2: git clone <link>(From your account)
Then make the changes in your PC
Step 3:
git add *
git commit –m “message”
git push origin master
Step 4: Make a Pull Request
git clone <link>
git pull