Tuesday, 22 November 2016

Git commands to push your code to a git repository



HOW To Push your code to GIT

$ git <navigate to your solution folder in your local system>
$ git init

$ git add .

$ git commit -m "First Commit"

$ git remote add origin <your git https url>

$ git remote -v

$ git push origin master

No comments :

Post a Comment