In this article, I am going to show, how you can push
your all code into a code repository.
Go to the local code repository and in address bar
execute cmd.exe
Command window will open. Now execute below code
> git init
> it add .
> git commit -am "Add your app"
> git remote add origin <git Repo Url>
> git push -u origin -all
It will push all your code into your git repository.
Commit
your changes
> git commit -m "Made Changes"
Push
your changes to GitHub
$ git push origin BranchName