Issue
I'm working with eclipse and I push the commits from eclipse. I have a repo with a few commits.
Few days ago I edited direct in the github account the readme file of this repo.
Now I wanted to push new commit, but the changes does not appear in the repo.
In eclipse/ repo history I can find the commit.
Any help would be greatly appreciated.
Solution
You need to do, from Eclipse, a pull --rebase first, in order to replay your local commits on top of the update remote branch (where you made a commit a few days ago)
Then, and only then will you be able to push.
Answered By - VonC
Answer Checked By - David Goodson (JavaFixing Volunteer)