We are using git for version control and right now we are getting a lot of warnings when trying to upload the most recent version. I am new to git and don\'t have patience for t
You are unable to push because there are commit on the remote that aren't merge in to the commit that you are trying to push. If you want to discard all of the changes that are in the currently in the remote you can do something like this.
git fetch
git merge -s ours origin/master
git push origin master
Note that this throws away changes that have been introduced in the remote that you don't have in your local repository.