- Clone the repo and configure it
git clone https://github.com/skillplot/linux-basics.git git config user.name <user_name> git config user.email <user_email> git config -l
- To add new/updates changes
git status ## put add all the changes git add -A ## example to add particular file git add README.md git status git commit -m'put some details on the changes' git push git status