- Install Git for Windows or in debian/ubuntu
sudo apt-get install git - Open the Powershell
- Tell git who you are
git config --global user.name "YOUR NAME"git config --global user.name "YOUR NAME"this is just to display who made the changes, doesn't have to match your login - Clone the remote repository ``git clone "url for repository"
git add 'nameoffile'git commit -m "a message about the changes"git push origin master- enter your username and password as prompted
git add --all- Steps 2 and on above