Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions docs/translations/README.hi.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ _यदि आप कमांड लाइन के साथ सहज नह

अपने कंप्यूटर पर एक टर्मिनल/कमांड प्रांप्ट खोलें और निम्न git आदेश (कमांड) चलाएँ:

```
```bash
git clone "यूआरएल जिसे आपने अभी कॉपी किया"
```

जहाँ "यूआरएल जिसे आपने अभी कॉपी किया" (उद्धरण चिह्नों के बिना) इस रिपॉज़िटरी के लिए यूआरएल है (इस परियोजना का आपका फोर्क) । यूआरएल प्राप्त करने के लिए पिछले निर्देश देखें ।

उदाहरण के लिए:

```
```bash
git clone https://github.com/यह-आप-हैं/first-contributions.git
```

Expand All @@ -46,20 +46,20 @@ git clone https://github.com/यह-आप-हैं/first-contributions.git

अपने कंप्यूटर पर बनाई गई रिपॉज़िटरी की कॉपी के फोल्डर/डायरेक्टरी में जाएँ (यदि अभी तक नहीं की है तो निम्न आदेश चलाएँ)

```
```bash
cd first-contributions
```

अब एक नई शाखा बनाएँ `git switch` कमांड का उपयोग करके ।
नई शाखा बनाने के लिए -c ऑप्शन का उपयोग होता है ।

```
```bash
git switch -c <अपनी-शाखा-का-नाम-जोड़ें>
```

उदाहरण के लिए:

```
```bash
git switch -c add-alonzo-church
```

Expand All @@ -75,13 +75,13 @@ git switch -c add-alonzo-church

उन परिवर्तनों को बनाई गई शाखा में जोड़ने के लिए `git add` कमांड का उपयोग करें ।

```
```bash
git add Contributors.md
```

अब अपने किये गए बदलावों को `git commit` कमांड का उपयोग करके कमिट करें ।

```
```bash
git commit -m "Add <आपका-नाम> to Contributors list"
```

Expand All @@ -91,7 +91,7 @@ git commit -m "Add <आपका-नाम> to Contributors list"

`git push` का उपयोग कर अपने परिवर्तन को पुश करें ।

```
```bash
git push origin <अपनी-शाखा-का-नाम-जोड़ें>
```

Expand Down Expand Up @@ -119,10 +119,10 @@ git push origin <अपनी-शाखा-का-नाम-जोड़ें>

## शिक्षण अन्य साधनो का उपयोग करने के लिए

|<a href="../github-desktop-tutorial.md"><img alt="गिटहब डेस्कटॉप" src="https://desktop.github.com/images/desktop-icon.svg" width="100"></a> |
<a href="../github-windows-vs2017-tutorial.md"><img alt="विज़ुअल स्टूडियो 2017" src="https://upload.wikimedia.org/wikipedia/commons/c/cd/Visual_Studio_2017_Logo.svg" width="100"></a> |
<a href="../gitkraken-tutorial.md"><img alt="गिटक्रैकेन" src="https://firstcontributions.github.io/assets/gui-tool-tutorials/gitkraken-tutorial/gk-icon.png" width="100"></a> |
<a href="../github-windows-vs-code-tutorial.md"><img alt="वीएस कोड" src="https://upload.wikimedia.org/wikipedia/commons/1/1c/Visual_Studio_Code_1.35_icon.png" width="100"></a> |
|<a href="../github-desktop-tutorial.md"><img alt="गिटहब डेस्कटॉप" src="https://desktop.github.com/images/desktop-icon.svg" width="100"></a> |
<a href="../github-windows-vs2017-tutorial.md"><img alt="विज़ुअल स्टूडियो 2017" src="https://upload.wikimedia.org/wikipedia/commons/c/cd/Visual_Studio_2017_Logo.svg" width="100"></a> |
<a href="../gitkraken-tutorial.md"><img alt="गिटक्रैकेन" src="https://firstcontributions.github.io/assets/gui-tool-tutorials/gitkraken-tutorial/gk-icon.png" width="100"></a> |
<a href="../github-windows-vs-code-tutorial.md"><img alt="वीएस कोड" src="https://upload.wikimedia.org/wikipedia/commons/1/1c/Visual_Studio_Code_1.35_icon.png" width="100"></a> |
<a href="sourcetree-macos-tutorial.md"><img alt="सॉर्सट्री ऐप" src="https://wac-cdn.atlassian.com/dam/jcr:81b15cde-be2e-4f4a-8af7-9436f4a1b431/Sourcetree-icon-blue.svg" width="100"></a>
|
| ------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
Expand Down