I have a fork that has automatic eol changes on cloning due to .gitattributes. This is fixed in upstream. I would like to merge upstream into my master; however, I am unable to get rid of these unstaged changes. I can't reset, and I can't stash them unless I am missing something. How do I merge upstream/master into master overwriting these local unstaged "changes"?
|
feedback
|
|
First, you can try
to get rid of any changes in the working dir and the index. Now you should be able to
If for some reason the git attributes make it seem like there are changes and it won't work, try
If this works, you should be in a headless state. IE, your current commit is not being tracked by any branch.
should get you to the updated one now. If the attributes are still causing you grief, add the Hope this helps | |||
feedback
|