I had some conflicts between my local repo and the remote repo.
So, I did:
git stash
git pull origin master
git stash apply
// here i had merge conflicts, so i edited the files and did
git add file1
git add file2
git commit
Now when I do git status
it shows a bunch of modified files, etc.
But git push origin master
says Everything up-to-date
.
Any ideas?