Add Visual Studio solution to Github using command line
git init
git add .
git commit -m "Initial commit"
git config --global user.name "your_git_username"
git config --global user.email "your_git_email"
git remote add origin https://github.com/<yourusername>/yourrepositoryname.git
git push -u origin master
This comment has been removed by a blog administrator.
ReplyDelete