[Y, n, q, a, d, /, K, j, J, g, e,?] में से प्रत्येक git -p के संदर्भ में क्या करता है


272

-P मोड का उपयोग करते समय git add -pया git stash -pप्रत्येक अक्षर किसके लिए खड़ा होता है?

मैं अनुमान लगा रहा हूँ yहाँ है और nनहीं है। बाकी क्या हैं?

[Y, एन, क्यू, ए, डी, /, कश्मीर, जम्मू, जम्मू, जी, ई ,?]


64
यदि आप ?विकल्प का प्रयास करते हैं , तो आपको पता चलेगा
अबे वोल्कर

7
शायद आपको बस थोड़ा स्क्रॉल करना होगा?
कोस्मो

1
स्वीकार किए गए उत्तर में प्रिंटआउट में 'प्रवेश करते समय सूचीबद्ध नहीं होने वाले विकल्प' शामिल हैं?
मार्क

जवाबों:


325

-pमोड साधन पैच, जिसके लिए मदद मुश्किल-ish को मिल रहा है, लेकिन अगर आप की जाँच git add --helpआप निम्नलिखित मिल जाएगा

   patch
       This lets you choose one path out of a status like selection. After choosing the path, it presents the diff between the index and the working tree file and asks you if you want to stage the change of each hunk. You can select one of the following options and type return:

           y - stage this hunk
           n - do not stage this hunk
           q - quit; do not stage this hunk nor any of the remaining ones
           a - stage this hunk and all later hunks in the file
           d - do not stage this hunk nor any of the later hunks in the file
           g - select a hunk to go to
           / - search for a hunk matching the given regex
           j - leave this hunk undecided, see next undecided hunk
           J - leave this hunk undecided, see next hunk
           k - leave this hunk undecided, see previous undecided hunk
           K - leave this hunk undecided, see previous hunk
           s - split the current hunk into smaller hunks
           e - manually edit the current hunk
           ? - print help

8
@VicGoldfeld d अगली फ़ाइल के लिए आगे बढ़ेगा जबकि q पूरी तरह से प्रक्रिया को रद्द कर देगा?
स्टीव

5
qपहले किए गए किसी भी परिवर्तन को रीसेट नहीं करता है । जो कुछ भी आप पहले ही मंचित कर चुके हैं, उसका मंचन जारी है।
अलेक्जेंडर बर्ड

मैं -pचोरी करने के लिए उपयोग करता हूं , यह नहीं जानता कि आप इसके लिए addभी उपयोग कर सकते हैं ! इस उत्तर को जोड़ने के लिए, -p | --patchझंडे का उल्लेख करते समय , यह cmd: git stash --helpआपको पैच विकल्पों के बारे में वैसी जानकारी नहीं देता जैसा कि git add --helpदेता है।
फिल गिबिन्स

31

इन अक्षरों का अर्थ टाइप करके पाया जा सकता है ? और Enter कुंजी दबाएं। मेरे लिए ये दौड़ते समय नहीं आए git add --help। मुझे इन विकल्पों का अर्थ नीचे दिया गया है: -

Arup-iMac:$ git add -p
diff --git a/app/interactors/reporting_groups/list_colleagues.rb b/app/interactors/reporting_groups/list_colleagues.rb
index adc28af..f46f5e3 100644
--- a/app/interactors/reporting_groups/list_colleagues.rb
+++ b/app/interactors/reporting_groups/list_colleagues.rb
@@ -14,7 +14,4 @@ module ReportingGroups
         reporting_group.employees_from_team_sub_reporting_groups
       else
         reporting_group.users
-      end
-    end
-  end
-end
+      
Stage this hunk [y,n,q,a,d,/,e,?]? ? <-- Look here, what I typed to get these.
y - stage this hunk
n - do not stage this hunk
q - quit; do not stage this hunk nor any of the remaining ones
a - stage this hunk and all later hunks in the file
d - do not stage this hunk nor any of the later hunks in the file
g - select a hunk to go to
/ - search for a hunk matching the given regex
j - leave this hunk undecided, see next undecided hunk
J - leave this hunk undecided, see next hunk
k - leave this hunk undecided, see previous undecided hunk
K - leave this hunk undecided, see previous hunk
s - split the current hunk into smaller hunks
e - manually edit the current hunk
? - print help
@@ -14,7 +14,4 @@ module ReportingGroups
         reporting_group.employees_from_team_sub_reporting_groups
       else
         reporting_group.users
-      end
-    end
-  end
-end
+      
Stage this hunk [y,n,q,a,d,/,e,?]? 
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.