Ho fatto un git stash pop
e ho finito con i conflitti di unione. Ho rimosso i file dal file system e l'ho fatto git checkout
come mostrato di seguito, ma pensa che i file non siano ancora uniti. Ho quindi provato a sostituire i file e fare di git checkout
nuovo lo stesso risultato. Ho provato a forzarlo con la -f
bandiera. Qualsiasi aiuto sarebbe apprezzato!
chirag-patels-macbook-pro:haloror patelc75$ git status
app/views/layouts/_choose_patient.html.erb: needs merge
app/views/layouts/_links.html.erb: needs merge
# On branch prod-temp
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: db/schema.rb
#
# Changed but not updated:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# unmerged: app/views/layouts/_choose_patient.html.erb
# unmerged: app/views/layouts/_links.html.erb
chirag-patels-macbook-pro:haloror patelc75$ git checkout app/views/layouts/_choose_patient.html.erb
error: path 'app/views/layouts/_choose_patient.html.erb' is unmerged
chirag-patels-macbook-pro:haloror patelc75$ git checkout -f app/views/layouts/_choose_patient.html.erb
warning: path 'app/views/layouts/_choose_patient.html.erb' is unmerged
git stash apply/pop
dovrebbe essere più facile con Git 2.5 (Q2 2015), dal momento che l'albero di lavoro deve ora essere pulito: vedi la mia risposta qui sotto