Quiero fusionar la twig de desarrollo en la twig principal y creo que hago algo como esto:
git checkout master git merge --no-ff develop git tag -a 1.0.0
pero en el pago obtengo
git checkout master error: The following untracked working tree files would be overwritten by checkout: Project/Resources/someimage.png Please move or remove them before you can switch branches. Aborting
Pero tengo un file someImage.png en mi twig de desarrollo y parece que git tiene de alguna manera un file antiguo. ¿Es GIT sensible a mayúsculas y minúsculas? En la carpeta local no hay tal file.
Shoud, simplemente uso git rm -f filename
?
Editar:
Ahora traté de eliminar el file, pero me sale
fatal: pathspec './Project/Resources/someimage.png' no coincide con ningún file
Ahora intentaré verificar la twig principal con -f.
Forcé el pago de esta manera
git checkout master -f
y las diferencias locales deben ser ignoradas. Creo que al eliminar y volver a insert la image había un problema en el índice más o less.