मैं एक के बाद रिबासिंग के बीच में हूं git pull --rebase
। मेरे पास कुछ फाइलें हैं, जिनमें मर्ज का टकराव है। मैं विशिष्ट फ़ाइलों के लिए "उनके" परिवर्तन या "मेरे" परिवर्तनों को कैसे स्वीकार कर सकता हूं?
$ git status
# Not currently on any branch.
# You are currently rebasing.
# (fix conflicts and then run "git rebase --continue")
# (use "git rebase --skip" to skip this patch)
# (use "git rebase --abort" to check out the original branch)
#
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: CorrectlyMergedFile
#
# Unmerged paths:
# (use "git reset HEAD <file>..." to unstage)
# (use "git add <file>..." to mark resolution)
#
# both modified: FileWhereIWantToAcceptTheirChanges
# both modified: FileWhereIWantToAcceptMyChanges
आम तौर पर मैं सिर्फ फ़ाइल या मर्ज टूल खोलता हूं और मैन्युअल रूप से सभी "उनके" या "मेरे" परिवर्तन स्वीकार करता हूं। हालांकि, मुझे संदेह है कि मुझे एक सुविधाजनक गिट कमांड याद आ रही है।
इसके अलावा, ध्यान दें कि मैं केवल प्रत्येक फ़ाइल के लिए एक मर्ज रणनीति चुनने में सक्षम होऊंगा जब मैं देखता हूं कि क्या फाइल टकराती है संभवतः एक टकराव होता है।