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