Read this
- Clone this repo to create a local repo
git clone <link> - Check if this repo is added as a remote repo in your comp
git remote -v - If repo is not added as remote repo, meaning the above command does not show you anything type in
git remote add origin <link>
- Always do a
git pullorgit pull --rebasebefore you make any changes - On root dir
git add . git commit -m "<your message here(make it meaningful)>"git push