I'm new to git, and have two branches i'm trying to merge (newDevelopment and master). I messed up the file tracking somehow on my newDevelopment branch, and because so, I cannot merge the changes into master. I've tried renaming the branch and merging to no avail.
Here's what i'm looking at:
blabla@ip:/vol/apps/staging/current$ git diff --name-status newDevelopment..master
M app/admin/reports.rb
M config/resque_schedule.yml
blabla@ip:/vol/apps/staging/current$ git branch
MoreDetailsReport
* master
newDevelopment
blabla@ip:/vol/apps/staging/current$ git merge newDevelopment
Already up-to-date.
How do I fix this? Thanks!