i am expecting you have already configured your github.if not, click_here for how-to
open cmd
- clone the remote repo to local machine
git clone [link of remote repo]
- goto that directory which you just cloned using
cd [file neme]
git init
- copy/make your changes to the local directory you just cloned
git pull
- for syncronizing all the files use
git add .
elsegit add [file name]
git commit -m "message under double quotes"
e.ggit commit -m "updated file"
git push
it will syncronize to master branch
😄 happy coding ❤️