आइए बताते हैं आपके example.css
लुक इस तरह:
.classname {
width: 440px;
}
/*#field_teacher_id {
display: block;
} */
form.table-form #field_teacher + label,
form.table-form #field_producer_distributor + label {
width: 300px;
}
.another {
width: 420px;
}
अब हम बीच के ब्लॉक में स्टाइल सेलेक्टर्स को बदलते हैं, और जब हम उस पर होते हैं, तो कुछ पुराने कमेंट-आउट स्टाइल को हटा देते हैं, जिनकी हमें अब और आवश्यकता नहीं है।
.classname {
width: 440px;
}
#user-register form.table-form .field-type-checkbox label {
width: 300px;
}
.another {
width: 420px;
}
यह आसान था, अब कमिट करते हैं। लेकिन रुकिए, मैं सरल चरण-वार कोड समीक्षा के लिए संस्करण नियंत्रण में परिवर्तनों को तार्किक रूप से अलग रखना चाहता हूं, और ताकि मैं और मेरी टीम आसानी से बारीकियों के लिए प्रतिबद्ध इतिहास खोज सकें।
पुराने कोड को हटाना अन्य शैली चयनकर्ता परिवर्तन से तार्किक रूप से अलग है। हमें दो अलग-अलग कमिट की आवश्यकता है, तो आइए पैच के लिए जोड़ जोड़ते हैं।
git add --patch
diff --git a/example.css b/example.css
index 426449d..50ecff9 100644
--- a/example.css
+++ b/example.css
@@ -2,12 +2,7 @@
width: 440px;
}
-/*#field_teacher_id {
- display: block;
-} */
-
-form.table-form #field_teacher + label,
-form.table-form #field_producer_distributor + label {
+#user-register form.table-form .field-type-checkbox label {
width: 300px;
}
Stage this hunk [y,n,q,a,d,/,e,?]?
वूप्स, लगता है कि परिवर्तन बहुत करीब हैं, इसलिए गिट ने उन्हें एक साथ हंक किया है।
यहां तक कि इसे दबाकर विभाजित करने का प्रयास करने sका एक ही परिणाम होता है क्योंकि विभाजन हमारे सटीक परिवर्तनों के लिए पर्याप्त रूप से दानेदार नहीं है। परिवर्तन लाइनों के बीच अपरिवर्तित लाइनों की आवश्यकता होती है, जिससे गिट को स्वचालित रूप से पैच को विभाजित करने में सक्षम होना चाहिए।
तो, आइए इसे मैन्युअल रूप से दबाकर संपादित करेंe
Stage this hunk [y,n,q,a,d,/,e,?]? e
git हमारी पसंद के संपादक में पैच खोलेगा।
# Manual hunk edit mode -- see bottom for a quick guide
@@ -2,12 +2,7 @@
width: 440px;
}
-/*#field_teacher_id {
- display: block;
-} */
-
-form.table-form #field_teacher + label,
-form.table-form #field_producer_distributor + label {
+#user-register form.table-form .field-type-checkbox label {
width: 300px;
}
# ---
# To remove '-' lines, make them ' ' lines (context).
# To remove '+' lines, delete them.
# Lines starting with # will be removed.
#
# If the patch applies cleanly, the edited hunk will immediately be
# marked for staging. If it does not apply cleanly, you will be given
# an opportunity to edit again. If all lines of the hunk are removed,
# then the edit is aborted and the hunk is left unchanged.
आइए लक्ष्य की समीक्षा करें:
मैं केवल अगली टिप्पणी में सीएसएस टिप्पणी को कैसे हटा सकता हूं?
हम इसे दो कमिट में विभाजित करना चाहते हैं:
पहली प्रतिबद्ध में कुछ लाइनें हटाना (टिप्पणी निकालना) शामिल है।
टिप्पणी की गई लाइनों को हटाने के लिए, बस उन्हें अकेला छोड़ दें, वे पहले से ही संस्करण नियंत्रण में विलम्ब को ट्रैक करने के लिए चिह्नित हैं जैसे हम चाहते हैं।
-/*#field_teacher_id {
- display: block;
-} */
दूसरा वचन एक परिवर्तन है, जिसे विलोपन और परिवर्धन दोनों को रिकॉर्ड करके ट्रैक किया जाता है:
हटाए गए पुराने चयनकर्ता रेखाएं)
पुरानी चयनकर्ता लाइनें रखने के लिए (इस कमिट के दौरान उन्हें डिलीट न करें), हम चाहते हैं ...
'-' लाइनों को हटाने के लिए, उन्हें '' बनाएं
... जिसका शाब्दिक अर्थ है कि अंतरिक्ष वर्ण के साथ ऋण -
चिह्न की जगह
।
तो ये तीन लाइन ...
-
-form.table-form #field_teacher + label,
-form.table-form #field_producer_distributor + label {
... ( सभी 3 पंक्तियों में पहले स्थान पर एक ही सूचना देगा ):
form.table-form #field_teacher + label,
form.table-form #field_producer_distributor + label {
अतिरिक्त (नई चयनकर्ता लाइन जोड़ी गई)
इस कमिट के दौरान जोड़ी गई नई चयनकर्ता लाइन पर ध्यान नहीं देने के लिए, हम चाहते हैं ...
'+' लाइनें निकालने के लिए, उन्हें हटा दें।
... जिसका शाब्दिक अर्थ है पूरी पंक्ति को हटाना:
+#user-register form.table-form .field-type-checkbox label {
(बोनस: यदि आप अपने संपादक के रूप में विम का उपयोग कर रहे हैं, तो ddएक पंक्ति हटाने के लिए दबाएँ । नैनो उपयोगकर्ता Ctrl+ दबाएं K)
जब आप सहेजते हैं तो आपके संपादक को इस तरह दिखना चाहिए:
# Manual hunk edit mode -- see bottom for a quick guide
@@ -2,12 +2,7 @@
width: 440px;
}
-/*#field_teacher_id {
- display: block;
-} */
form.table-form #field_teacher + label,
form.table-form #field_producer_distributor + label {
width: 300px;
}
# ---
# To remove '-' lines, make them ' ' lines (context).
# To remove '+' lines, delete them.
# Lines starting with # will be removed.
#
# If the patch applies cleanly, the edited hunk will immediately be
# marked for staging. If it does not apply cleanly, you will be given
# an opportunity to edit again. If all lines of the hunk are removed,
# then the edit is aborted and the hunk is left unchanged.
अब हम कमिट करें।
git commit -m "remove old code"
और बस यह सुनिश्चित करने के लिए, चलो अंतिम प्रतिबद्ध से परिवर्तन देखें।
git show
commit 572ecbc7beecca495c8965ce54fbccabdd085112
Author: Jeff Puckett <jeff@jeffpuckett.com>
Date: Sat Jun 11 17:06:48 2016 -0500
remove old code
diff --git a/example.css b/example.css
index 426449d..d04c832 100644
--- a/example.css
+++ b/example.css
@@ -2,9 +2,6 @@
width: 440px;
}
-/*#field_teacher_id {
- display: block;
-} */
form.table-form #field_teacher + label,
form.table-form #field_producer_distributor + label {
बिल्कुल सही - आप देख सकते हैं कि उस परमाणु प्रतिबद्धता में केवल विलोपन शामिल किए गए थे। अब काम खत्म करते हैं और बाकी काम करते हैं।
git add .
git commit -m "change selectors"
git show
commit 83ec3c16b73bca799e4ed525148cf303e0bd39f9
Author: Jeff Puckett <jeff@jeffpuckett.com>
Date: Sat Jun 11 17:09:12 2016 -0500
change selectors
diff --git a/example.css b/example.css
index d04c832..50ecff9 100644
--- a/example.css
+++ b/example.css
@@ -2,9 +2,7 @@
width: 440px;
}
-
-form.table-form #field_teacher + label,
-form.table-form #field_producer_distributor + label {
+#user-register form.table-form .field-type-checkbox label {
width: 300px;
}
अंत में आप देख सकते हैं कि अंतिम प्रतिबद्ध में केवल चयनकर्ता परिवर्तन शामिल हैं।