I was working on a project that I had cloned from gitHub, but while I was making changes to my copy, someone already pushed changes to the remote repo.
What should I do now ? How do I push my changes to the remote repo?
I am new to gitHub and git .
Thanks
Do a
git pull --rebaseto pull in the changes from the remote repo. Then you can push your changes to the remote repo, provided you do not get a merge conflict.