From e3c221635aca1cafde4724b52775456366e7230b Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 25 Jan 2025 19:36:50 +0330 Subject: [PATCH 01/17] create persian version readme file --- READMEir.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 READMEir.md diff --git a/READMEir.md b/READMEir.md new file mode 100644 index 00000000..e69de29b From 3037f87b754e1e69936463c373f92dd2accdad1e Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 25 Jan 2025 19:40:01 +0330 Subject: [PATCH 02/17] add persian version link for translated versions --- READMEir.md | 81 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) diff --git a/READMEir.md b/READMEir.md index e69de29b..0994f476 100644 --- a/READMEir.md +++ b/READMEir.md @@ -0,0 +1,81 @@ +دستورات گیت +============ + +## نسخه های ترجمه شده +- [Versão em português](READMEpt.md) +- [Versión en español](READMEes.md) +- [Türkçe versiyon](READMEtr.md) +- [Azərbaycanca versiya](READMEaz.md) +- [বাংলা সংস্করণ](READMEbn.md) +- [हिन्दी अनुवाद](READMEhi.md) +- [persian version](READMEir.md) +- [العربية](READMEar.md) + +___ + +_A list of my commonly used Git commands_ + +*If you are interested in my Git aliases, have a look at my `.bash_profile`, found here: https://github.com/joshnh/bash_profile/blob/master/.bash_profile* + +-- + +### Getting & Creating Projects + +| Command | Description | +| ------- | ----------- | +| `git init` | Initialize a local Git repository | +| `git clone ssh://git@github.com/[username]/[repository-name].git` | Create a local copy of a remote repository | + +### Basic Snapshotting + +| Command | Description | +| ------- | ----------- | +| `git status` | Check status | +| `git add [file-name.txt]` | Add a file to the staging area | +| `git add -A` | Add all new and changed files to the staging area | +| `git commit -m "[commit message]"` | Commit changes | +| `git rm -r [file-name.txt]` | Remove a file (or folder) | +| `git remote -v` | View the remote repository of the currently working file or directory | + +### Branching & Merging + +| Command | Description | +| ------- | ----------- | +| `git branch` | List branches (the asterisk denotes the current branch) | +| `git branch -a` | List all branches (local and remote) | +| `git branch [branch name]` | Create a new branch | +| `git branch -d [branch name]` | Delete a branch | +| `git push origin --delete [branch name]` | Delete a remote branch | +| `git checkout -b [branch name]` | Create a new branch and switch to it | +| `git checkout -b [branch name] origin/[branch name]` | Clone a remote branch and switch to it | +| `git branch -m [old branch name] [new branch name]` | Rename a local branch | +| `git checkout [branch name]` | Switch to a branch | +| `git checkout -` | Switch to the branch last checked out | +| `git checkout -- [file-name.txt]` | Discard changes to a file | +| `git merge [branch name]` | Merge a branch into the active branch | +| `git merge [source branch] [target branch]` | Merge a branch into a target branch | +| `git stash` | Stash changes in a dirty working directory | +| `git stash clear` | Remove all stashed entries | +| `git stash pop` | Apply latest stash to working directory | + +### Sharing & Updating Projects + +| Command | Description | +| ------- | ----------- | +| `git push origin [branch name]` | Push a branch to your remote repository | +| `git push -u origin [branch name]` | Push changes to remote repository (and remember the branch) | +| `git push` | Push changes to remote repository (remembered branch) | +| `git push origin --delete [branch name]` | Delete a remote branch | +| `git pull` | Update local repository to the newest commit | +| `git pull origin [branch name]` | Pull changes from remote repository | +| `git remote add origin ssh://git@github.com/[username]/[repository-name].git` | Add a remote repository | +| `git remote set-url origin ssh://git@github.com/[username]/[repository-name].git` | Set a repository's origin branch to SSH | + +### Inspection & Comparison + +| Command | Description | +| ------- | ----------- | +| `git log` | View changes | +| `git log --summary` | View changes (detailed) | +| `git log --oneline` | View changes (briefly) | +| `git diff [source branch] [target branch]` | Preview changes before merging | From 84124dde4d3584ffcbfc16bdcb75becb6caf5854 Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 25 Jan 2025 19:49:41 +0330 Subject: [PATCH 03/17] git aliases --- READMEir.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/READMEir.md b/READMEir.md index 0994f476..bf9358cb 100644 --- a/READMEir.md +++ b/READMEir.md @@ -13,9 +13,9 @@ ___ -_A list of my commonly used Git commands_ +_فهرستی از دستورات گیت که معمولاً استفاده می کنم_ -*If you are interested in my Git aliases, have a look at my `.bash_profile`, found here: https://github.com/joshnh/bash_profile/blob/master/.bash_profile* +*اگر به نام مستعار گیت من علاقه دارید، به `.bash_profile` من که در اینجا یافت می شود نگاه کنید: https://github.com/joshnh/bash_profile/blob/master/.bash_profile* -- From edba0d025de766c1b9f61a9e4d1ea52e93cba123 Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 25 Jan 2025 19:50:36 +0330 Subject: [PATCH 04/17] edit git aliases --- READMEir.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/READMEir.md b/READMEir.md index bf9358cb..55680742 100644 --- a/READMEir.md +++ b/READMEir.md @@ -15,7 +15,7 @@ ___ _فهرستی از دستورات گیت که معمولاً استفاده می کنم_ -*اگر به نام مستعار گیت من علاقه دارید، به `.bash_profile` من که در اینجا یافت می شود نگاه کنید: https://github.com/joshnh/bash_profile/blob/master/.bash_profile* +*اگر به نام مستعار گیت من علاقه دارید، به `bash_profile.` من که در اینجا یافت می شود نگاه کنید: https://github.com/joshnh/bash_profile/blob/master/.bash_profile* -- From aeefb80d64d35a087278d9bb1f1ab49aefb74b05 Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 25 Jan 2025 19:55:09 +0330 Subject: [PATCH 05/17] Getting & Creating Projects translate --- READMEir.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/READMEir.md b/READMEir.md index 55680742..cd9f569a 100644 --- a/READMEir.md +++ b/READMEir.md @@ -19,12 +19,12 @@ _فهرستی از دستورات گیت که معمولاً استفاده می -- -### Getting & Creating Projects +### دریافت و ایجاد پروژه ها -| Command | Description | +| توضیحات | دستور | | ------- | ----------- | -| `git init` | Initialize a local Git repository | -| `git clone ssh://git@github.com/[username]/[repository-name].git` | Create a local copy of a remote repository | +| `git init` | ایجاد یک ریپوزیتوری یا مخزن در لوکال | +| `git clone ssh://git@github.com/[username]/[repository-name].git` | کپی کردن یک ریموت ریپوزیتوری در لوکال | ### Basic Snapshotting From ced8ccabd0b99783e3e5715ea572aeeb762dcb95 Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 25 Jan 2025 19:55:40 +0330 Subject: [PATCH 06/17] edit Getting & Creating Projects translate --- READMEir.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/READMEir.md b/READMEir.md index cd9f569a..20e55a5f 100644 --- a/READMEir.md +++ b/READMEir.md @@ -21,7 +21,7 @@ _فهرستی از دستورات گیت که معمولاً استفاده می ### دریافت و ایجاد پروژه ها -| توضیحات | دستور | +| دستور | توضیحات | | ------- | ----------- | | `git init` | ایجاد یک ریپوزیتوری یا مخزن در لوکال | | `git clone ssh://git@github.com/[username]/[repository-name].git` | کپی کردن یک ریموت ریپوزیتوری در لوکال | From c472649a98dd46219c401f5eb85cbed7f1744efa Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 25 Jan 2025 20:28:11 +0330 Subject: [PATCH 07/17] basic Snapshotting --- READMEir.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/READMEir.md b/READMEir.md index 20e55a5f..e3a745a5 100644 --- a/READMEir.md +++ b/READMEir.md @@ -26,16 +26,16 @@ _فهرستی از دستورات گیت که معمولاً استفاده می | `git init` | ایجاد یک ریپوزیتوری یا مخزن در لوکال | | `git clone ssh://git@github.com/[username]/[repository-name].git` | کپی کردن یک ریموت ریپوزیتوری در لوکال | -### Basic Snapshotting +### مبانی -| Command | Description | +| دستور | توضیحات | | ------- | ----------- | -| `git status` | Check status | -| `git add [file-name.txt]` | Add a file to the staging area | -| `git add -A` | Add all new and changed files to the staging area | -| `git commit -m "[commit message]"` | Commit changes | -| `git rm -r [file-name.txt]` | Remove a file (or folder) | -| `git remote -v` | View the remote repository of the currently working file or directory | +| `git status` | بررسی کردن وضعیت | +| `git add [file-name.txt]` | اضافه کردن یک فایل به استیجینگ | +| `git add -A` | اضاغه کردن همه ی فایل های جدیدِ تغییر یافته به استیجینگ | +| `git commit -m "[commit message]"` | ثبت تغییرات با پیام مناسب | +| `git rm -r [file-name.txt]` | حذف کردن یک فایل یا فولدر | +| `git remote -v` | دیدن ریموت ریپوزیتوری از فایل یا دایرکتوری فعلیِ در حال کار | ### Branching & Merging From 52b47513915aba8bf0c3af23965d95a4984d9f51 Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 25 Jan 2025 20:49:34 +0330 Subject: [PATCH 08/17] Branching & Merging --- READMEir.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/READMEir.md b/READMEir.md index e3a745a5..1fc4867c 100644 --- a/READMEir.md +++ b/READMEir.md @@ -37,26 +37,26 @@ _فهرستی از دستورات گیت که معمولاً استفاده می | `git rm -r [file-name.txt]` | حذف کردن یک فایل یا فولدر | | `git remote -v` | دیدن ریموت ریپوزیتوری از فایل یا دایرکتوری فعلیِ در حال کار | -### Branching & Merging +### شاخه ها یا برنچ ها و ادغام کردن آنها -| Command | Description | +| دستور | توضیحات | | ------- | ----------- | -| `git branch` | List branches (the asterisk denotes the current branch) | -| `git branch -a` | List all branches (local and remote) | -| `git branch [branch name]` | Create a new branch | -| `git branch -d [branch name]` | Delete a branch | -| `git push origin --delete [branch name]` | Delete a remote branch | -| `git checkout -b [branch name]` | Create a new branch and switch to it | -| `git checkout -b [branch name] origin/[branch name]` | Clone a remote branch and switch to it | -| `git branch -m [old branch name] [new branch name]` | Rename a local branch | -| `git checkout [branch name]` | Switch to a branch | -| `git checkout -` | Switch to the branch last checked out | -| `git checkout -- [file-name.txt]` | Discard changes to a file | -| `git merge [branch name]` | Merge a branch into the active branch | -| `git merge [source branch] [target branch]` | Merge a branch into a target branch | -| `git stash` | Stash changes in a dirty working directory | -| `git stash clear` | Remove all stashed entries | -| `git stash pop` | Apply latest stash to working directory | +| `git branch` | لیست شاخه ها یا برنچ ها را نمایش می دهد (ستاره نشان دهنده ی شاخه ی فعلی است) | +| `git branch -a` | لیست تمام برنچ ها یا شاخه ها (اعم از داخلی و ریموت) | +| `git branch [branch name]` | ساخت یک برنچ یا شاخه ی جدید | +| `git branch -d [branch name]` | حذف یک شاخه | +| `git push origin --delete [branch name]` | حذف یک ریموت برنچ یا شاخه ی ریموت | +| `git checkout -b [branch name]` | ساخت یک برنچ جدید و سوئیچ کردن به آن در لحظه | +| `git checkout -b [branch name] origin/[branch name]` | نسخه برداری از یک ریموت برنچ و سوئیچ کردن به آن در لحظه | +| `git branch -m [old branch name] [new branch name]` | تغییر نام یک برنچ یا شاخه ی محلی یا لوکال | +| `git checkout [branch name]` | سوئیچ کردن به یک برنچ یا شاخه | +| `git checkout -` | رفتن به شاخه یا برنچی که آخرین بار بررسی شد یا در آن بودیم | +| `git checkout -- [file-name.txt]` | حذف تغییرات درون یک فایل | +| `git merge [branch name]` | ادغام کردن یا مرج کردن یک شاخه یا برنچ در شاخه یا برنچ فعال | +| `git merge [source branch] [target branch]` | ادغام یا مرج کردن شاخه یا برنچ فرعی در شاخه برنچ هدف | +| `git stash` | ذخیره تغییرات در یک چرک نویس | +| `git stash clear` | حذف کردن تمام چرک نویس های ذخیره شده | +| `git stash pop` | اضافه کردن آخرین چرک نویس را به ورکینگ دایرکتوری | ### Sharing & Updating Projects From 8ce1870edfbc3c450b68e84266b8c8c12d525f8e Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 25 Jan 2025 21:01:35 +0330 Subject: [PATCH 09/17] Branching & Merging --- READMEir.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/READMEir.md b/READMEir.md index 1fc4867c..008d9f3b 100644 --- a/READMEir.md +++ b/READMEir.md @@ -58,18 +58,18 @@ _فهرستی از دستورات گیت که معمولاً استفاده می | `git stash clear` | حذف کردن تمام چرک نویس های ذخیره شده | | `git stash pop` | اضافه کردن آخرین چرک نویس را به ورکینگ دایرکتوری | -### Sharing & Updating Projects +### اشتراک‌گذاری و به‌روزرسانی پروژه‌ها -| Command | Description | +| دستور | توضیحات | | ------- | ----------- | -| `git push origin [branch name]` | Push a branch to your remote repository | -| `git push -u origin [branch name]` | Push changes to remote repository (and remember the branch) | -| `git push` | Push changes to remote repository (remembered branch) | -| `git push origin --delete [branch name]` | Delete a remote branch | -| `git pull` | Update local repository to the newest commit | -| `git pull origin [branch name]` | Pull changes from remote repository | -| `git remote add origin ssh://git@github.com/[username]/[repository-name].git` | Add a remote repository | -| `git remote set-url origin ssh://git@github.com/[username]/[repository-name].git` | Set a repository's origin branch to SSH | +| `git push origin [branch name]` | پوش کردن یه برنچ یا شاخه به مخزن ریموت شما | +| `git push -u origin [branch name]` | ارسال تغییرات به مخزن ریموت (و شاخه یا برنچ را به خاطر بسپار) | +| `git push` | ارسال تغییرات به مخزن ریموت (شاخه‌ای که به خاطر سپرده شده) | +| `git push origin --delete [branch name]` | حذف یک برنچ یا شاخه ی ریموت | +| `git pull` | به‌روزرسانی مخزن محلی به جدیدترین commit | +| `git pull origin [branch name]` | آوردن یا کشیدن تغییرات از مخزن یا ریپوزیتوری ریموت | +| `git remote add origin ssh://git@github.com/[username]/[repository-name].git` | اضافه کردن یک مخزن یا ریپوزیتوری ریموت | +| `git remote set-url origin ssh://git@github.com/[username]/[repository-name].git` | تنظیم کردن یا قرار دادن برنچ یا شاخه ی origin یک ریپوزیتوری یا مخزن به SSH | ### Inspection & Comparison From e00a9b8e89386124665e20a35dbc6a12fe049e62 Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 25 Jan 2025 21:02:30 +0330 Subject: [PATCH 10/17] Branching & Merging edit --- READMEir.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/READMEir.md b/READMEir.md index 008d9f3b..27cbc45e 100644 --- a/READMEir.md +++ b/READMEir.md @@ -69,7 +69,7 @@ _فهرستی از دستورات گیت که معمولاً استفاده می | `git pull` | به‌روزرسانی مخزن محلی به جدیدترین commit | | `git pull origin [branch name]` | آوردن یا کشیدن تغییرات از مخزن یا ریپوزیتوری ریموت | | `git remote add origin ssh://git@github.com/[username]/[repository-name].git` | اضافه کردن یک مخزن یا ریپوزیتوری ریموت | -| `git remote set-url origin ssh://git@github.com/[username]/[repository-name].git` | تنظیم کردن یا قرار دادن برنچ یا شاخه ی origin یک ریپوزیتوری یا مخزن به SSH | +| `git remote set-url origin ssh://git@github.com/[username]/[repository-name].git` | تنظیم شاخه origin یک مخزن به SSH | ### Inspection & Comparison From 7dad4e0f342b71f565ade4d0cb791786453fd8bc Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 25 Jan 2025 21:03:46 +0330 Subject: [PATCH 11/17] Branching & Merging edit 2 --- READMEir.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/READMEir.md b/READMEir.md index 27cbc45e..3b0cf1da 100644 --- a/READMEir.md +++ b/READMEir.md @@ -69,7 +69,7 @@ _فهرستی از دستورات گیت که معمولاً استفاده می | `git pull` | به‌روزرسانی مخزن محلی به جدیدترین commit | | `git pull origin [branch name]` | آوردن یا کشیدن تغییرات از مخزن یا ریپوزیتوری ریموت | | `git remote add origin ssh://git@github.com/[username]/[repository-name].git` | اضافه کردن یک مخزن یا ریپوزیتوری ریموت | -| `git remote set-url origin ssh://git@github.com/[username]/[repository-name].git` | تنظیم شاخه origin یک مخزن به SSH | +| `git remote set-url origin ssh://git@github.com/[username]/[repository-name].git` | origin تنظیم شاخه ی یک مخزن SSH به | ### Inspection & Comparison From ae96e3106b4424b696f9c2d6495a2eb87977ba60 Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 25 Jan 2025 21:05:22 +0330 Subject: [PATCH 12/17] Branching & Merging edit 3 --- READMEir.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/READMEir.md b/READMEir.md index 3b0cf1da..414b629a 100644 --- a/READMEir.md +++ b/READMEir.md @@ -69,7 +69,7 @@ _فهرستی از دستورات گیت که معمولاً استفاده می | `git pull` | به‌روزرسانی مخزن محلی به جدیدترین commit | | `git pull origin [branch name]` | آوردن یا کشیدن تغییرات از مخزن یا ریپوزیتوری ریموت | | `git remote add origin ssh://git@github.com/[username]/[repository-name].git` | اضافه کردن یک مخزن یا ریپوزیتوری ریموت | -| `git remote set-url origin ssh://git@github.com/[username]/[repository-name].git` | origin تنظیم شاخه ی یک مخزن SSH به | +| `git remote set-url origin ssh://git@github.com/[username]/[repository-name].git` | تنظیم یا قرار دادن شاخه ی origin یک مخزن یا ریپوزیتوری به SHH | ### Inspection & Comparison From a07215c02ea2b26875b09713bce09b9388ac616c Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 25 Jan 2025 21:06:21 +0330 Subject: [PATCH 13/17] Branching & Merging edit 4 --- READMEir.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/READMEir.md b/READMEir.md index 414b629a..a54846fa 100644 --- a/READMEir.md +++ b/READMEir.md @@ -69,7 +69,7 @@ _فهرستی از دستورات گیت که معمولاً استفاده می | `git pull` | به‌روزرسانی مخزن محلی به جدیدترین commit | | `git pull origin [branch name]` | آوردن یا کشیدن تغییرات از مخزن یا ریپوزیتوری ریموت | | `git remote add origin ssh://git@github.com/[username]/[repository-name].git` | اضافه کردن یک مخزن یا ریپوزیتوری ریموت | -| `git remote set-url origin ssh://git@github.com/[username]/[repository-name].git` | تنظیم یا قرار دادن شاخه ی origin یک مخزن یا ریپوزیتوری به SHH | +| `git remote set-url origin ssh://git@github.com/[username]/[repository-name].git` | تنظیم یا قرار دادن شاخه ی اوریجین یک مخزن یا ریپوزیتوری به SHH | ### Inspection & Comparison From e3d3d4c03f0557c5fb58c502858ba0f1b45df8c0 Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 25 Jan 2025 21:09:31 +0330 Subject: [PATCH 14/17] Inspection & Comparison --- READMEir.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/READMEir.md b/READMEir.md index a54846fa..b90d198e 100644 --- a/READMEir.md +++ b/READMEir.md @@ -71,11 +71,11 @@ _فهرستی از دستورات گیت که معمولاً استفاده می | `git remote add origin ssh://git@github.com/[username]/[repository-name].git` | اضافه کردن یک مخزن یا ریپوزیتوری ریموت | | `git remote set-url origin ssh://git@github.com/[username]/[repository-name].git` | تنظیم یا قرار دادن شاخه ی اوریجین یک مخزن یا ریپوزیتوری به SHH | -### Inspection & Comparison +### بازبینی و مقایسه -| Command | Description | +| دستور | توضیحات | | ------- | ----------- | -| `git log` | View changes | -| `git log --summary` | View changes (detailed) | -| `git log --oneline` | View changes (briefly) | -| `git diff [source branch] [target branch]` | Preview changes before merging | +| `git log` | مشاهده ی تغییرات | +| `git log --summary` | مشاهده تغییرات (به طور جزئی) | +| `git log --oneline` | مشاهده تغییرات (به طور مختصر) | +| `git diff [source branch] [target branch]` | پیش‌ نمایش تغییرات قبل از ادغام یا مرج کردن | From 06e3e8386354501aeafae4741ce783ec0abb8027 Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 25 Jan 2025 21:11:33 +0330 Subject: [PATCH 15/17] Inspection & Comparison 2 --- READMEir.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/READMEir.md b/READMEir.md index b90d198e..79289210 100644 --- a/READMEir.md +++ b/READMEir.md @@ -76,6 +76,6 @@ _فهرستی از دستورات گیت که معمولاً استفاده می | دستور | توضیحات | | ------- | ----------- | | `git log` | مشاهده ی تغییرات | -| `git log --summary` | مشاهده تغییرات (به طور جزئی) | -| `git log --oneline` | مشاهده تغییرات (به طور مختصر) | +| `git log --summary` | مشاهده ی تغییرات (به طور جزئی) | +| `git log --oneline` | مشاهده ی تغییرات (به طور مختصر) | | `git diff [source branch] [target branch]` | پیش‌ نمایش تغییرات قبل از ادغام یا مرج کردن | From b0d51ea047737a245530951d688372e5963d227e Mon Sep 17 00:00:00 2001 From: Ahmd Mirzaei Date: Sun, 26 Jan 2025 20:31:02 +0330 Subject: [PATCH 16/17] Update READMEir.md --- READMEir.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/READMEir.md b/READMEir.md index 79289210..8c220a5d 100644 --- a/READMEir.md +++ b/READMEir.md @@ -8,7 +8,7 @@ - [Azərbaycanca versiya](READMEaz.md) - [বাংলা সংস্করণ](READMEbn.md) - [हिन्दी अनुवाद](READMEhi.md) -- [persian version](READMEir.md) +- [فارسی](READMEir.md) - [العربية](READMEar.md) ___ @@ -35,7 +35,7 @@ _فهرستی از دستورات گیت که معمولاً استفاده می | `git add -A` | اضاغه کردن همه ی فایل های جدیدِ تغییر یافته به استیجینگ | | `git commit -m "[commit message]"` | ثبت تغییرات با پیام مناسب | | `git rm -r [file-name.txt]` | حذف کردن یک فایل یا فولدر | -| `git remote -v` | دیدن ریموت ریپوزیتوری از فایل یا دایرکتوری فعلیِ در حال کار | +| `git remote -v` | مشاهده ی ریموت ریپوزیتوری از فایل یا دایرکتوری فعلیِ در حال کار | ### شاخه ها یا برنچ ها و ادغام کردن آنها From 2c43f7a38c49272ce799ecfd2f0836506abae444 Mon Sep 17 00:00:00 2001 From: Ahmd Mirzaei Date: Sun, 26 Jan 2025 20:31:52 +0330 Subject: [PATCH 17/17] Update READMEir.md --- READMEir.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/READMEir.md b/READMEir.md index 8c220a5d..f66b46d7 100644 --- a/READMEir.md +++ b/READMEir.md @@ -8,9 +8,8 @@ - [Azərbaycanca versiya](READMEaz.md) - [বাংলা সংস্করণ](READMEbn.md) - [हिन्दी अनुवाद](READMEhi.md) -- [فارسی](READMEir.md) - [العربية](READMEar.md) - +- [فارسی](READMEir.md) ___ _فهرستی از دستورات گیت که معمولاً استفاده می کنم_