I'm absolutely new in Git (but everyone once was a newbie, right?). I had two branches : master and nightly_build. After finishing work with nightly_build i decided to merge it with master I did with TortoiseGit "git checkout master" and then ran
git.exe merge nightly_build
I got the following:
Updating 6762fd0..fa1963c
error: Your local changes to the following files would be overwritten by merge:
obj/x86/Release/DesignTimeResolveAssemblyReferences.cache
Please commit your changes or stash them before you merge.
Aborting
git did not exit cleanly (exit code 1)
This .cache file is negligible, I can delete it to avoid this warning. But would it proper way?
What I have to do in order to successfully merge my changes in nightly_build with master? There's no difference: console or GUI commands. Any advice from expierenced Git people would be appreciated.