Git help Command
In this page:
git help command_name
git command_name -h
git help क्या है?
git help Git का built-in manual system है -- यह किसी भी command के लिए detailed documentation खोलता है, हर available flag और usage example सहित, बिना आपको कभी terminal छोड़ने या online search करने की ज़रूरत के।
उदाहरण: What is git help?
git help
Command Manuals Access करना
git help <command> चलाना (उदाहरण के लिए git help init) उस command का पूरा manual page खोलता है, वही detailed reference जो आपको Git की official documentation में मिलेगा, सीधे आपके terminal में पढ़ने के लिए formatted।
उदाहरण: Accessing Command Manuals
git help init
Compact Shorthand Help (-h)
जब आपको पूरे manual के बजाय किसी command के flags का सिर्फ एक quick reminder चाहिए, -h add करना (जैसे git init -h) पूरा man page खोलने के बजाय एक छोटा, scannable summary print करता है।
उदाहरण: Compact Shorthand Help (-h)
git init -h
सभी Available Commands List करना
git help --all आपके system पर installed हर single Git command list करता है, कई obscure वाले सहित जिन्हें आप शायद ही कभी इस्तेमाल करेंगे -- ज़्यादातर लोगों के रोज़ इस्तेमाल किए गए दर्जन commands से आगे Git के toolkit का actual size discover करने का एक उपयोगी तरीका।
उदाहरण: Listing All Available Commands
git help --all
Online Git Help Guides
built-in docs से आगे, community guides और troubleshooting walkthroughs (cookiescursor.com/git-help पर मौजूद सहित) अक्सर एक specific real-world problem solve करने के लिए formal manual pages से तेज़ हैं, जो workflow के बजाय syntax पर focused हैं।
उदाहरण: Online Git Help Guides
# See cookiescursor.com/git-help for community guides and walkthroughs
git help commitचलाना और pager से confused हो जाना, यह न जानते हुए कि quit करने के लिएqpress करना है।git helpइस्तेमाल करना जब एक short reminder काफी हो, जहाँgit commit -hoptions की एक compact list print करता है।- command को
git help git-commit -mकी तरह type करना, जबकि topic सिर्फgit help commitजैसा एक command name लेता है।
Chapter Quiz — Complete all 18 topics to unlock
0/18 topics done
Complete these topics first:
- Git init Command
- Git New Files
- Git Staging Environment
- Git clone Command
- Git status Command
- Git help Command
- Git add Command
- Git commit Command
- Git tags Command
- Git stash Command
- Git log Command
- Git diff Command
- Git show Command
- Git rm Command
- Git mv Command
- Git restore Command
- Git clean Command
- Git ignore (.gitignore)