When i try to git pull origin develop... the problem is I know it's not up-to-date. I want to pull everything to get back to where everything is up-to-date with others commits.
If i have nothing else of importance in my local repository can i just re-pull from origin develop? I'm thinking it will overwrite everything but at least than i'll be up-to-date and have the save version is everyone else!?!?!?
This was my original workflow with git but somehow everything got skewed:
git add files_that_were_updated
git commit -m "Message."
git push origin BUG-#
git checkout develop
git fetch origin
git pull origin develop
git merge BUG-#
git push origin develop
Seems pretty standard and straightforward, no?