Bonjour,
une fois de plus je galère au moment de merger ma branche de travail avec ma master
.gitignore
malgré mon fichier .gitgnore, les fichier pycache posent problème
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7 # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class */__pycache__/* ...
et donc quand je merge :
je galère, merci d'avance pour votre aide
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9 $ git merge feature/22 warning: Cannot merge binary files: unblind/migrations/__pycache__/0003_auto_20200124_1007.cpython-37.pyc (HEAD vs. feature/22) warning: Cannot merge binary files: unblind/migrations/__pycache__/0002_auto_20200124_0904.cpython-37.pyc (HEAD vs. feature/22) Auto-merging unblind/migrations/__pycache__/0003_auto_20200124_1007.cpython-37.pyc CONFLICT (content): Merge conflict in unblind/migrations/__pycache__/0003_auto_20200124_1007.cpython-37.pyc Auto-merging unblind/migrations/__pycache__/0002_auto_20200124_0904.cpython-37.pyc CONFLICT (content): Merge conflict in unblind/migrations/__pycache__/0002_auto_20200124_0904.cpython-37.pyc Removing randomization/templates/randomization/_randomisation_edit.html Automatic merge failed; fix conflicts and then commit the result.
Partager