One easy way to commit uncommited changes and then pull was using command-line on the Visual Studio solution folder as follows.
git add -A git commit -m "your message" git fetch origin master git pull origin master git push origin master //To push to the git
No comments:
Post a Comment