From 90b9dc96f7683a7bb8286917cc0ec025df0b3752 Mon Sep 17 00:00:00 2001 From: 9tykeshav <57292513+9tykeshav@users.noreply.github.com> Date: Thu, 7 Oct 2021 22:46:38 +0530 Subject: [PATCH] git-status: add Hindi translation (#6677) --- pages.hi/common/git-status.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages.hi/common/git-status.md diff --git a/pages.hi/common/git-status.md b/pages.hi/common/git-status.md new file mode 100644 index 000000000..c636ae22b --- /dev/null +++ b/pages.hi/common/git-status.md @@ -0,0 +1,21 @@ +# git status + +> गिट रिपॉजिटरी में फाइलों में बदलाव दिखाएं। +> उन पथों को प्रदर्शित करता है जिनमें अनुक्रमणिका फ़ाइल और वर्तमान हेड कमिट के बीच अंतर होता है। +> अधिक जानकारी के लिए: . + +- बदली हुई फ़ाइलें दिखाएं जो अभी तक कमिट के लिए नहीं जोड़ी गई हैं: + +`git status` + +- शॉर्ट-फॉर्मेट में आउटपुट दें: + +`git status -s` + +- आउटपुट में ट्रैक न की गई फ़ाइलें न दिखाएं: + +`git status --untracked-files=no` + +- [b]शाखा की जानकारी के साथ [s]लघु प्रारूप में आउटपुट दिखाएं: + +`git status -sb`