After setting up a GitHub account, configure your local repository, using gitbash Create a folder for your local repository mkdir /c/localrepo cd /c/localrepo Git localrepo config git config –global user.name “username” git config –global user.email “youremail@yourdomain” git init git remote add origin https://github.com/username/repository.git Copy/Create your file in your local repository and configure it for git git add File.txt git commit -m “Add a comment for your addition/update” Push your file from your localrepo to your GitHub repository git push warning: push.default is unset; its implicit value has changed in Git 2.0 from ‘matching’ to ‘simple’. To squelch this message and maintain the traditional behavior, use: git config –global push.default matching To squelch this message and adopt the new behavior now, use: git config –g...