-1

I tried to push my project into the GitHub by using EGit and I got a confirmation message that it has been pushed but I could not see that file on my GitHub page.

enter image description here

I don't know about GitHub briefly and I am a fresher to GitHub. Therefore please help me to solve my problem.

Rich Churcher
  • 7,361
  • 3
  • 37
  • 60

1 Answers1

0

From the language used in the error message, I'd say you likely have changes in your remote (on GitHub's copy of master) that aren't in your local master. The fix would be to fetch the remote and merge its changes into your local. You can read more about how to do that at Dealing with non-fast-forward errors.

Rich Churcher
  • 7,361
  • 3
  • 37
  • 60