diff --git a/content/book/fa/v2/Customizing-Git-An-Example-Git-Enforced-Policy.html b/content/book/fa/v2/Customizing-Git-An-Example-Git-Enforced-Policy.html
index b69647a75b..0c8fe38bd3 100644
--- a/content/book/fa/v2/Customizing-Git-An-Example-Git-Enforced-Policy.html
+++ b/content/book/fa/v2/Customizing-Git-An-Example-Git-Enforced-Policy.html
@@ -96,7 +96,7 @@
GitHub is designed around a particular collaboration workflow, centered on Pull Requests.
This flow works whether you’re collaborating with a tightly-knit team in a single shared repository, or a globally-distributed company or network of strangers contributing to a project through dozens of forks.
-It is centered on the شاخههای موضوعی workflow covered in شاخهسازی در گیت.
+It is centered on the }}">شاخههای موضوعی workflow covered in }}">شاخهسازی در گیت.
Here’s how it generally works:
@@ -101,7 +101,7 @@
The GitHub Flow
-
This is basically the Integration Manager workflow covered in روند کاری مدیر-یکپارچهسازی, but instead of using email to communicate and review changes, teams use GitHub’s web based tools.
+
This is basically the Integration Manager workflow covered in }}">روند کاری مدیر-یکپارچهسازی, but instead of using email to communicate and review changes, teams use GitHub’s web based tools.
Let’s walk through an example of proposing a change to an open source project hosted on GitHub using this flow.
@@ -113,7 +113,7 @@
Creating a Pull Request
-
}}" alt="The project we want to contribute to.">
+
}}" alt="The project we want to contribute to.">
نمودار 90. The project we want to contribute to.
@@ -200,7 +200,7 @@ Creating a Pull Request
-
}}" alt="Pull Request button">
+
}}" alt="Pull Request button">
نمودار 91. Pull Request button
@@ -214,7 +214,7 @@ Creating a Pull Request
-
}}" alt="Pull Request creation">
+
}}" alt="Pull Request creation">
نمودار 92. Pull Request creation page
@@ -244,12 +244,12 @@ Iterating on a Pull Request
Let’s say that he likes the idea, but would prefer a slightly longer time for the light to be off than on.
-
Where this conversation may take place over email in the workflows presented in گیت توزیعشده, on GitHub this happens online.
+
Where this conversation may take place over email in the workflows presented in }}">گیت توزیعشده, on GitHub this happens online.
The project owner can review the unified diff and leave a comment by clicking on any of the lines.
-
}}" alt="PR line comment">
+
}}" alt="PR line comment">
نمودار 93. Comment on a specific line of code in a Pull Request
@@ -259,18 +259,18 @@ Iterating on a Pull Request
-
}}" alt="Email notification">
+
}}" alt="Email notification">
نمودار 94. Comments sent as email notifications
Anyone can also leave general comments on the Pull Request.
-In Pull Request discussion page we can see an example of the project owner both commenting on a line of code and then leaving a general comment in the discussion section.
+In }}">Pull Request discussion page we can see an example of the project owner both commenting on a line of code and then leaving a general comment in the discussion section.
You can see that the code comments are brought into the conversation as well.
-
}}" alt="PR discussion page">
+
}}" alt="PR discussion page">
نمودار 95. Pull Request discussion page
@@ -278,21 +278,21 @@ Iterating on a Pull Request
Now the contributor can see what they need to do in order to get their change accepted.
Luckily this is very straightforward.
Where over email you may have to re-roll your series and resubmit it to the mailing list, with GitHub you simply commit to the topic branch again and push, which will automatically update the Pull Request.
-In Pull Request final you can also see that the old code comment has been collapsed in the updated Pull Request, since it was made on a line that has since been changed.
+In }}">Pull Request final you can also see that the old code comment has been collapsed in the updated Pull Request, since it was made on a line that has since been changed.
Adding commits to an existing Pull Request doesn’t trigger a notification, so once Tony has pushed his corrections he decides to leave a comment to inform the project owner that he made the requested change.
-
}}" alt="PR final">
+
}}" alt="PR final">
نمودار 96. Pull Request final
An interesting thing to notice is that if you click on the “Files Changed” tab on this Pull Request, you’ll get the “unified” diff — that is, the total aggregate difference that would be introduced to your main branch if this topic branch was merged in.
In git diff
terms, it basically automatically shows you git diff master...<branch>
for the branch this Pull Request is based on.
-See تشخیص تغییرات معرفی شده for more about this type of diff.
+See
}}">تشخیص تغییرات معرفی شده for more about this type of diff.
The other thing you’ll notice is that GitHub checks to see if the Pull Request merges cleanly and provides a button to do the merge for you on the server.
@@ -343,7 +343,7 @@
Pull Requests as Patches
When code is proposed with a Pull Request and the maintainers or community suggest a change, the patch series is generally not re-rolled, but instead the difference is pushed as a new commit to the branch, moving the conversation forward with the context of the previous work intact.
-
For instance, if you go back and look again at Pull Request final, you’ll notice that the contributor did not rebase his commit and send another Pull Request.
+
For instance, if you go back and look again at }}">Pull Request final, you’ll notice that the contributor did not rebase his commit and send another Pull Request.
Instead they added new commits and pushed them to the existing branch.
This way if you go back and look at this Pull Request in the future, you can easily find all of the context of why decisions were made.
Pushing the “Merge” button on the site purposefully creates a merge commit that references the Pull Request so that it’s easy to go back and research the original conversation if necessary.
@@ -357,12 +357,12 @@
Keeping up with Upstream
-
}}" alt="PR merge failure">
+
}}" alt="PR merge failure">
نمودار 97. Pull Request does not merge cleanly
You have two main options in order to do this.
@@ -436,7 +436,7 @@
Keeping up with Upstream
-
}}" alt="PR fixed">
+
}}" alt="PR fixed">
نمودار 98. Pull Request now merges cleanly
@@ -446,7 +446,7 @@ Keeping up with Upstream
If you absolutely wish to rebase the branch to clean it up, you can certainly do so, but it is highly encouraged to not force push over the branch that the Pull Request is already opened on.
-If other people have pulled it down and done more work on it, you run into all of the issues outlined in خطرات ریبیسکردن.
+If other people have pulled it down and done more work on it, you run into all of the issues outlined in }}">خطرات ریبیسکردن.
Instead, push the rebased branch to a new branch on GitHub and open a brand new Pull Request referencing the old one, then close the original.
@@ -467,20 +467,20 @@ References
Let’s look at an example.
Say we rebased the branch in the previous example, created a new pull request for it, and now we want to reference the old pull request from the new one.
We also want to reference an issue in the fork of the repository and an issue in a completely different project.
-We can fill out the description just like Cross references in a Pull Request..
+We can fill out the description just like }}">Cross references in a Pull Request..
-
}}" alt="PR references">
+
}}" alt="PR references">
نمودار 99. Cross references in a Pull Request.
-
}}" alt="PR references rendered">
+
}}" alt="PR references rendered">
نمودار 100. Cross references rendered in a Pull Request.
@@ -490,11 +490,11 @@ References
-
}}" alt="PR closed">
+
}}" alt="PR closed">
نمودار 101. Link back to the new Pull Request in the closed Pull Request timeline.
@@ -513,11 +513,11 @@ GitHub Flavored Markdown
Markdown is like writing in plain text but which is rendered richly.
-
}}" alt="Example Markdown">
+
}}" alt="Example Markdown">
نمودار 102. An example of GitHub Flavored Markdown as written and as rendered.
@@ -543,11 +543,11 @@ Task Lists
-
}}" alt="Example Task List">
+
}}" alt="Example Task List">
نمودار 103. Task lists rendered in a Markdown comment.
@@ -559,11 +559,11 @@ Task Lists
What’s more, GitHub will look for task lists in your Issues and Pull Requests and show them as metadata on the pages that list them out.
For example, if you have a Pull Request with tasks and you look at the overview page of all Pull Requests, you can see how far done it is.
This helps people break down Pull Requests into subtasks and helps other people track the progress of the branch.
-You can see an example of this in Task list summary in the Pull Request list..
+You can see an example of this in }}">Task list summary in the Pull Request list..
-
}}" alt="Example Task List">
+
}}" alt="Example Task List">
نمودار 104. Task list summary in the Pull Request list.
@@ -593,11 +593,11 @@ Code Snippets
-
}}" alt="Rendered fenced code">
+
}}" alt="Rendered fenced code">
نمودار 105. Rendered fenced code example.
@@ -621,11 +621,11 @@ Quoting
-
}}" alt="Rendered quoting">
+
}}" alt="Rendered quoting">
نمودار 106. Rendered quoting example.
@@ -640,7 +640,7 @@ Emoji
-
}}" alt="Emoji autocompleter">
+
}}" alt="Emoji autocompleter">
نمودار 107. Emoji autocompleter in action.
@@ -660,11 +660,11 @@ Emoji
-
}}" alt="Emoji">
+
}}" alt="Emoji">
نمودار 108. Heavy emoji commenting.
@@ -698,12 +698,12 @@ Images
-
}}" alt="Drag and drop images">
+
}}" alt="Drag and drop images">
نمودار 109. Drag and drop images to upload them and auto-embed them.
diff --git a/content/book/fa/v2/GitHub-Maintaining-a-Project.html b/content/book/fa/v2/GitHub-Maintaining-a-Project.html
index 5cfe876504..b07e780402 100644
--- a/content/book/fa/v2/GitHub-Maintaining-a-Project.html
+++ b/content/book/fa/v2/GitHub-Maintaining-a-Project.html
@@ -25,17 +25,17 @@ Maintaining a Project
Creating a New Repository
Let’s create a new repository to share our project code with.
-Start by clicking the “New repository” button on the right-hand side of the dashboard, or from the +
button in the top toolbar next to your username as seen in The “New repository” dropdown..
+Start by clicking the “New repository” button on the right-hand side of the dashboard, or from the
+
button in the top toolbar next to your username as seen in
}}">The “New repository” dropdown..
-
}}" alt="The ``Your repositories'' area.">
+
}}" alt="The ``Your repositories'' area.">
نمودار 110. The “Your repositories” area.
-
}}" alt="The ``new repository'' dropdown.">
+
}}" alt="The ``new repository'' dropdown.">
نمودار 111. The “New repository” dropdown.
@@ -44,7 +44,7 @@ Creating a New Repository
-
}}" alt="The ``new repository'' form.">
+
}}" alt="The ``new repository'' form.">
نمودار 112. The “new repository” form.
@@ -54,7 +54,7 @@ Creating a New Repository
Since you have no code there yet, GitHub will show you instructions for how to create a brand-new Git repository, or connect an existing Git project.
-We won’t belabor this here; if you need a refresher, check out مقدمات گیت.
+We won’t belabor this here; if you need a refresher, check out
}}">مقدمات گیت.
Now that your project is hosted on GitHub, you can give the URL to anyone you want to share your project with.
@@ -90,7 +90,7 @@
Adding Collaborators
-
}}" alt="The repository settings link.">
+
}}" alt="The repository settings link.">
نمودار 113. The repository settings link.
@@ -102,7 +102,7 @@ Adding Collaborators
-
}}" alt="The repository collaborators box.">
+
}}" alt="The repository collaborators box.">
نمودار 114. Repository collaborators.
@@ -123,11 +123,11 @@ Managing Pull Requests
Email Notifications
-
}}" alt="Pull Request email notification">
+
}}" alt="Pull Request email notification">
نمودار 115. Email notification of a new Pull Request.
@@ -139,7 +139,7 @@ Email Notifications
If you notice the line that says git pull <url> patch-1
, this is a simple way to merge in a remote branch without having to add a remote.
-We went over this quickly in چکاوت کردن برنچهای ریموت.
+We went over this quickly in }}">چکاوت کردن برنچهای ریموت.
If you wish, you can create and switch to a topic branch and then run this command to merge in the Pull Request changes.
@@ -155,7 +155,7 @@
Email Notifications
Collaborating on the Pull Request
-
As we covered in The GitHub Flow, you can now have a conversation with the person who opened the Pull Request.
+
As we covered in }}">The GitHub Flow, you can now have a conversation with the person who opened the Pull Request.
You can comment on specific lines of code, comment on whole commits or comment on the entire Pull Request itself, using GitHub Flavored Markdown everywhere.
@@ -164,7 +164,7 @@
Collaborating on the Pull Request
-
}}" alt="Email response">
+
}}" alt="Email response">
نمودار 116. Responses to emails are included in the thread.
@@ -175,11 +175,11 @@ Collaborating on the Pull RequestIf the merge is trivial, you can also just hit the “Merge” button on the GitHub site.
This will do a “non-fast-forward” merge, creating a merge commit even if a fast-forward merge was possible.
This means that no matter what, every time you hit the merge button, a merge commit is created.
-As you can see in Merge button and instructions for merging a Pull Request manually., GitHub gives you all of this information if you click the hint link.
+As you can see in }}">Merge button and instructions for merging a Pull Request manually., GitHub gives you all of this information if you click the hint link.
@@ -191,14 +191,14 @@
Collaborating on the Pull RequestPull Request Refs
If you’re dealing with a lot of Pull Requests and don’t want to add a bunch of remotes or do one time pulls every time, there is a neat trick that GitHub allows you to do.
-This is a bit of an advanced trick and we’ll go over the details of this a bit more in The Refspec, but it can be pretty useful.
+This is a bit of an advanced trick and we’ll go over the details of this a bit more in
}}">The Refspec, but it can be pretty useful.
GitHub actually advertises the Pull Request branches for a repository as sort of pseudo-branches on the server.
By default you don’t get them when you clone, but they are there in an obscured way and you can access them pretty easily.
-
To demonstrate this, we’re going to use a low-level command (often referred to as a “plumbing” command, which we’ll read about more in Plumbing and Porcelain) called ls-remote
.
+
To demonstrate this, we’re going to use a low-level command (often referred to as a “plumbing” command, which we’ll read about more in }}">Plumbing and Porcelain) called ls-remote
.
This command is generally not used in day-to-day Git operations but it’s useful to show us what references are present on the server.
@@ -318,7 +318,7 @@
Pull Requests on Pull Requests
-
}}" alt="PR targets">
+
}}" alt="PR targets">
نمودار 118. Manually change the Pull Request target fork and branch.
@@ -337,7 +337,7 @@
Mentions and Notifications
-
}}" alt="Mentions">
+
}}" alt="Mentions">
نمودار 119. Start typing @ to mention someone.
@@ -356,7 +356,7 @@
Mentions and Notifications
-
}}" alt="Unsubscribe">
+
}}" alt="Unsubscribe">
نمودار 120. Unsubscribe from an Issue or Pull Request.
@@ -368,7 +368,7 @@ The Notifications Page
-
}}" alt="Notification center">
+
}}" alt="Notification center">
نمودار 121. Notification center options.
@@ -379,11 +379,11 @@ The Notifications Page
Web Notifications
Web notifications only exist on GitHub and you can only check them on GitHub.
-If you have this option selected in your preferences and a notification is triggered for you, you will see a small blue dot over your notifications icon at the top of your screen as seen in Notification center..
+If you have this option selected in your preferences and a notification is triggered for you, you will see a small blue dot over your notifications icon at the top of your screen as seen in
}}">Notification center..
-
}}" alt="Notification center">
+
}}" alt="Notification center">
نمودار 122. Notification center.
@@ -403,14 +403,14 @@ Email Notifications
There is also a fair amount of metadata embedded in the headers of the emails that GitHub sends you, which can be really helpful for setting up custom filters and rules.
@@ -484,11 +484,11 @@
README
CONTRIBUTING
-
}}" alt="Contributing notice">
+
}}" alt="Contributing notice">
نمودار 123. Opening a Pull Request when a CONTRIBUTING file exists.
@@ -509,7 +509,7 @@
Changing the Default Branch
-
}}" alt="Default branch">
+
}}" alt="Default branch">
نمودار 124. Change the default branch for a project.
@@ -524,7 +524,7 @@
Transferring a Project
-
}}" alt="Transfer">
+
}}" alt="Transfer">
نمودار 125. Transfer a project to another GitHub user or Organization.
diff --git a/content/book/fa/v2/GitHub-Managing-an-organization.html b/content/book/fa/v2/GitHub-Managing-an-organization.html
index fb4414e1ac..fffdd88b0f 100644
--- a/content/book/fa/v2/GitHub-Managing-an-organization.html
+++ b/content/book/fa/v2/GitHub-Managing-an-organization.html
@@ -32,7 +32,7 @@ Organization Basics
-
}}" alt="The ``New organization'' menu item.">
+
}}" alt="The ``New organization'' menu item.">
نمودار 126. The “New organization” menu item.
@@ -50,7 +50,7 @@ Organization Basics
You also automatically “watch” any new repository created under these organizations.
-
Just like in Your Avatar, you can upload an avatar for your organization to personalize it a bit.
+
Just like in }}">Your Avatar, you can upload an avatar for your organization to personalize it a bit.
Also just like personal accounts, you have a landing page for the organization that lists all of your repositories and can be viewed by other people.
@@ -72,19 +72,19 @@
Teams
-
}}" alt="orgs 01 page">
+
}}" alt="orgs 01 page">
نمودار 127. The Organization page.
-
To manage your Teams, you can click on the Teams sidebar on the right hand side of the page in The Organization page..
+
To manage your Teams, you can click on the Teams sidebar on the right hand side of the page in }}">The Organization page..
This will bring you to a page you can use to add members to the team, add repositories to the team or manage the settings and access control levels for the team.
Each team can have read only, read/write or administrative access to the repositories.
-You can change that level by clicking the “Settings” button in The Team page..
+You can change that level by clicking the “Settings” button in
}}">The Team page..
-
}}" alt="orgs 02 teams">
+
}}" alt="orgs 02 teams">
نمودار 128. The Team page.
@@ -108,7 +108,7 @@ Audit Log
-
}}" alt="orgs 03 audit">
+
}}" alt="orgs 03 audit">
نمودار 129. The Audit log.
diff --git a/content/book/fa/v2/GitHub-Scripting-GitHub.html b/content/book/fa/v2/GitHub-Scripting-GitHub.html
index 0d49584e0d..f5b5f237be 100644
--- a/content/book/fa/v2/GitHub-Scripting-GitHub.html
+++ b/content/book/fa/v2/GitHub-Scripting-GitHub.html
@@ -35,11 +35,11 @@ Services
First we’ll take a look at Services.
Both the Hooks and Services integrations can be found in the Settings section of your repository, where we previously looked at adding Collaborators and changing the default branch of your project.
-Under the “Webhooks and Services” tab you will see something like Services and Hooks configuration section..
+Under the “Webhooks and Services” tab you will see something like
}}">Services and Hooks configuration section..
-
}}" alt="Services and hooks">
+
}}" alt="Services and hooks">
نمودار 130. Services and Hooks configuration section.
@@ -47,11 +47,11 @@ Services
There are dozens of services you can choose from, most of them integrations into other commercial and open source systems.
Most of them are for Continuous Integration services, bug and issue trackers, chat room systems and documentation systems.
We’ll walk through setting up a very simple one, the Email hook.
-If you choose “email” from the “Add Service” dropdown, you’ll get a configuration screen like Email service configuration..
+If you choose “email” from the “Add Service” dropdown, you’ll get a configuration screen like }}">Email service configuration..
-
}}" alt="Email service">
+
}}" alt="Email service">
نمودار 131. Email service configuration.
@@ -75,12 +75,12 @@ Hooks
Generally the way this works is you can setup a small web service to listen for a GitHub hook payload and then do something with the data when it is received.
-
}}" alt="Web hook">
+
}}" alt="Web hook">
نمودار 132. Web hook configuration.
@@ -143,7 +143,7 @@ Hooks
-
}}" alt="Webhook debug">
+
}}" alt="Webhook debug">
نمودار 133. Web hook debugging information.
@@ -229,7 +229,7 @@
-
}}" alt="Access Token">
+
}}" alt="Access Token">
نمودار 134. Generate your access token from the “Applications” tab of your settings page.
@@ -275,11 +275,11 @@
@@ -352,11 +352,11 @@ Changing the Status of a Pull Re
For example, a testing service may provide a status and a validation service like this may also provide a status — the “context” field is how they’re differentiated.
-
}}" alt="Commit status">
+
}}" alt="Commit status">
نمودار 136. Commit status via the API.
diff --git a/content/book/fa/v2/ch00/A-git-in-other-environments.html b/content/book/fa/v2/ch00/A-git-in-other-environments.html
new file mode 100644
index 0000000000..a202c8b60e
--- /dev/null
+++ b/content/book/fa/v2/ch00/A-git-in-other-environments.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Graphical-Interfaces#A-git-in-other-environments"
+---
diff --git a/content/book/fa/v2/ch00/B-embedding-git-in-your-applications.html b/content/book/fa/v2/ch00/B-embedding-git-in-your-applications.html
new file mode 100644
index 0000000000..7d9d0fc82e
--- /dev/null
+++ b/content/book/fa/v2/ch00/B-embedding-git-in-your-applications.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-Command-line-Git#B-embedding-git-in-your-applications"
+---
diff --git a/content/book/fa/v2/ch00/C-git-commands.html b/content/book/fa/v2/ch00/C-git-commands.html
new file mode 100644
index 0000000000..60ee1c6be1
--- /dev/null
+++ b/content/book/fa/v2/ch00/C-git-commands.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Setup-and-Config#C-git-commands"
+---
diff --git a/content/book/fa/v2/ch00/_a_custom_credential_cache.html b/content/book/fa/v2/ch00/_a_custom_credential_cache.html
new file mode 100644
index 0000000000..61c8aa8055
--- /dev/null
+++ b/content/book/fa/v2/ch00/_a_custom_credential_cache.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Credential-Storage#_a_custom_credential_cache"
+---
diff --git a/content/book/fa/v2/ch00/_abort_merge.html b/content/book/fa/v2/ch00/_abort_merge.html
new file mode 100644
index 0000000000..d2c050be8a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_abort_merge.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Advanced-Merging#_abort_merge"
+---
diff --git a/content/book/fa/v2/ch00/_access_token.html b/content/book/fa/v2/ch00/_access_token.html
new file mode 100644
index 0000000000..e9c78f5afe
--- /dev/null
+++ b/content/book/fa/v2/ch00/_access_token.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_access_token"
+---
diff --git a/content/book/fa/v2/ch00/_account_setup_and_configuration.html b/content/book/fa/v2/ch00/_account_setup_and_configuration.html
new file mode 100644
index 0000000000..e4d54abcea
--- /dev/null
+++ b/content/book/fa/v2/ch00/_account_setup_and_configuration.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Account-Setup-and-Configuration#_account_setup_and_configuration"
+---
diff --git a/content/book/fa/v2/ch00/_add_email_addresses.html b/content/book/fa/v2/ch00/_add_email_addresses.html
new file mode 100644
index 0000000000..318cde18cb
--- /dev/null
+++ b/content/book/fa/v2/ch00/_add_email_addresses.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Account-Setup-and-Configuration#_add_email_addresses"
+---
diff --git a/content/book/fa/v2/ch00/_adding_collaborators.html b/content/book/fa/v2/ch00/_adding_collaborators.html
new file mode 100644
index 0000000000..9a2fb1219a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_adding_collaborators.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_adding_collaborators"
+---
diff --git a/content/book/fa/v2/ch00/_administration.html b/content/book/fa/v2/ch00/_administration.html
new file mode 100644
index 0000000000..e86775394f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_administration.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Administration#_administration"
+---
diff --git a/content/book/fa/v2/ch00/_advanced_functionality.html b/content/book/fa/v2/ch00/_advanced_functionality.html
new file mode 100644
index 0000000000..f42cf9e71c
--- /dev/null
+++ b/content/book/fa/v2/ch00/_advanced_functionality.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-Libgit2#_advanced_functionality"
+---
diff --git a/content/book/fa/v2/ch00/_advanced_functionality_2.html b/content/book/fa/v2/ch00/_advanced_functionality_2.html
new file mode 100644
index 0000000000..fa8ffac6f6
--- /dev/null
+++ b/content/book/fa/v2/ch00/_advanced_functionality_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-go-git#_advanced_functionality_2"
+---
diff --git a/content/book/fa/v2/ch00/_advanced_merging.html b/content/book/fa/v2/ch00/_advanced_merging.html
new file mode 100644
index 0000000000..7b23cdfbaa
--- /dev/null
+++ b/content/book/fa/v2/ch00/_advanced_merging.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Advanced-Merging#_advanced_merging"
+---
diff --git a/content/book/fa/v2/ch00/_advanced_pull_requests.html b/content/book/fa/v2/ch00/_advanced_pull_requests.html
new file mode 100644
index 0000000000..dd83b94781
--- /dev/null
+++ b/content/book/fa/v2/ch00/_advanced_pull_requests.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_advanced_pull_requests"
+---
diff --git a/content/book/fa/v2/ch00/_an_example_git_enforced_policy.html b/content/book/fa/v2/ch00/_an_example_git_enforced_policy.html
new file mode 100644
index 0000000000..327f1c98f9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_an_example_git_enforced_policy.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-An-Example-Git-Enforced-Policy#_an_example_git_enforced_policy"
+---
diff --git a/content/book/fa/v2/ch00/_ancestry_references.html b/content/book/fa/v2/ch00/_ancestry_references.html
new file mode 100644
index 0000000000..96353d4c08
--- /dev/null
+++ b/content/book/fa/v2/ch00/_ancestry_references.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Revision-Selection#_ancestry_references"
+---
diff --git a/content/book/fa/v2/ch00/_annotated_tags.html b/content/book/fa/v2/ch00/_annotated_tags.html
new file mode 100644
index 0000000000..0e5344d5d8
--- /dev/null
+++ b/content/book/fa/v2/ch00/_annotated_tags.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-برچسبگذاری#_annotated_tags"
+---
diff --git a/content/book/fa/v2/ch00/_api_comment.html b/content/book/fa/v2/ch00/_api_comment.html
new file mode 100644
index 0000000000..0536a60785
--- /dev/null
+++ b/content/book/fa/v2/ch00/_api_comment.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_api_comment"
+---
diff --git a/content/book/fa/v2/ch00/_audit_log.html b/content/book/fa/v2/ch00/_audit_log.html
new file mode 100644
index 0000000000..705f2682cb
--- /dev/null
+++ b/content/book/fa/v2/ch00/_audit_log.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Managing-an-organization#_audit_log"
+---
diff --git a/content/book/fa/v2/ch00/_bare_repo.html b/content/book/fa/v2/ch00/_bare_repo.html
new file mode 100644
index 0000000000..8fb43ec6b6
--- /dev/null
+++ b/content/book/fa/v2/ch00/_bare_repo.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-راهاندازی-گیت-در-سرور#_bare_repo"
+---
diff --git a/content/book/fa/v2/ch00/_basic_branching.html b/content/book/fa/v2/ch00/_basic_branching.html
new file mode 100644
index 0000000000..450e8ad32e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_basic_branching.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-شاخهسازی-و-ادغام-مقدماتی#_basic_branching"
+---
diff --git a/content/book/fa/v2/ch00/_basic_client_configuration.html b/content/book/fa/v2/ch00/_basic_client_configuration.html
new file mode 100644
index 0000000000..131b7696a7
--- /dev/null
+++ b/content/book/fa/v2/ch00/_basic_client_configuration.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_basic_client_configuration"
+---
diff --git a/content/book/fa/v2/ch00/_basic_merge_conflicts.html b/content/book/fa/v2/ch00/_basic_merge_conflicts.html
new file mode 100644
index 0000000000..0ff889a58f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_basic_merge_conflicts.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-شاخهسازی-و-ادغام-مقدماتی#_basic_merge_conflicts"
+---
diff --git a/content/book/fa/v2/ch00/_basic_merging.html b/content/book/fa/v2/ch00/_basic_merging.html
new file mode 100644
index 0000000000..b7bc2d122b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_basic_merging.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-شاخهسازی-و-ادغام-مقدماتی#_basic_merging"
+---
diff --git a/content/book/fa/v2/ch00/_basic_snapshotting.html b/content/book/fa/v2/ch00/_basic_snapshotting.html
new file mode 100644
index 0000000000..78e6e156e9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_basic_snapshotting.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Basic-Snapshotting#_basic_snapshotting"
+---
diff --git a/content/book/fa/v2/ch00/_basic_usage.html b/content/book/fa/v2/ch00/_basic_usage.html
new file mode 100644
index 0000000000..8a6ba2a430
--- /dev/null
+++ b/content/book/fa/v2/ch00/_basic_usage.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_basic_usage"
+---
diff --git a/content/book/fa/v2/ch00/_bazaar.html b/content/book/fa/v2/ch00/_bazaar.html
new file mode 100644
index 0000000000..2e354ea22d
--- /dev/null
+++ b/content/book/fa/v2/ch00/_bazaar.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Migrating-to-Git#_bazaar"
+---
diff --git a/content/book/fa/v2/ch00/_bazaar_branches.html b/content/book/fa/v2/ch00/_bazaar_branches.html
new file mode 100644
index 0000000000..a9fcffcbeb
--- /dev/null
+++ b/content/book/fa/v2/ch00/_bazaar_branches.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_bazaar_branches"
+---
diff --git a/content/book/fa/v2/ch00/_binary_files.html b/content/book/fa/v2/ch00/_binary_files.html
new file mode 100644
index 0000000000..49e3f2c607
--- /dev/null
+++ b/content/book/fa/v2/ch00/_binary_files.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Attributes#_binary_files"
+---
diff --git a/content/book/fa/v2/ch00/_binary_search.html b/content/book/fa/v2/ch00/_binary_search.html
new file mode 100644
index 0000000000..fa70ec4ed6
--- /dev/null
+++ b/content/book/fa/v2/ch00/_binary_search.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Debugging-with-Git#_binary_search"
+---
diff --git a/content/book/fa/v2/ch00/_branch_management.html b/content/book/fa/v2/ch00/_branch_management.html
new file mode 100644
index 0000000000..549aaea6ed
--- /dev/null
+++ b/content/book/fa/v2/ch00/_branch_management.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-مدیریت-شاخه#_branch_management"
+---
diff --git a/content/book/fa/v2/ch00/_branch_references.html b/content/book/fa/v2/ch00/_branch_references.html
new file mode 100644
index 0000000000..4cd7839b83
--- /dev/null
+++ b/content/book/fa/v2/ch00/_branch_references.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Revision-Selection#_branch_references"
+---
diff --git a/content/book/fa/v2/ch00/_branches_and_bookmarks.html b/content/book/fa/v2/ch00/_branches_and_bookmarks.html
new file mode 100644
index 0000000000..979467d55d
--- /dev/null
+++ b/content/book/fa/v2/ch00/_branches_and_bookmarks.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_branches_and_bookmarks"
+---
diff --git a/content/book/fa/v2/ch00/_branching_and_merging.html b/content/book/fa/v2/ch00/_branching_and_merging.html
new file mode 100644
index 0000000000..04d73c15f7
--- /dev/null
+++ b/content/book/fa/v2/ch00/_branching_and_merging.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Branching-and-Merging#_branching_and_merging"
+---
diff --git a/content/book/fa/v2/ch00/_build_number.html b/content/book/fa/v2/ch00/_build_number.html
new file mode 100644
index 0000000000..6ef1731900
--- /dev/null
+++ b/content/book/fa/v2/ch00/_build_number.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_build_number"
+---
diff --git a/content/book/fa/v2/ch00/_bundling.html b/content/book/fa/v2/ch00/_bundling.html
new file mode 100644
index 0000000000..093012a579
--- /dev/null
+++ b/content/book/fa/v2/ch00/_bundling.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Bundling#_bundling"
+---
diff --git a/content/book/fa/v2/ch00/_case_of_a_project_with_a_main_branch_and_a_working_branch.html b/content/book/fa/v2/ch00/_case_of_a_project_with_a_main_branch_and_a_working_branch.html
new file mode 100644
index 0000000000..a192166ef4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_case_of_a_project_with_a_main_branch_and_a_working_branch.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Migrating-to-Git#_case_of_a_project_with_a_main_branch_and_a_working_branch"
+---
diff --git a/content/book/fa/v2/ch00/_caveats.html b/content/book/fa/v2/ch00/_caveats.html
new file mode 100644
index 0000000000..643c90a296
--- /dev/null
+++ b/content/book/fa/v2/ch00/_caveats.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_caveats"
+---
diff --git a/content/book/fa/v2/ch00/_changing_email_addresses_globally.html b/content/book/fa/v2/ch00/_changing_email_addresses_globally.html
new file mode 100644
index 0000000000..b6b1ff4a95
--- /dev/null
+++ b/content/book/fa/v2/ch00/_changing_email_addresses_globally.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Rewriting-History#_changing_email_addresses_globally"
+---
diff --git a/content/book/fa/v2/ch00/_changing_multiple.html b/content/book/fa/v2/ch00/_changing_multiple.html
new file mode 100644
index 0000000000..14974b3888
--- /dev/null
+++ b/content/book/fa/v2/ch00/_changing_multiple.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Rewriting-History#_changing_multiple"
+---
diff --git a/content/book/fa/v2/ch00/_changing_the_default_branch.html b/content/book/fa/v2/ch00/_changing_the_default_branch.html
new file mode 100644
index 0000000000..17ac40a49b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_changing_the_default_branch.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_changing_the_default_branch"
+---
diff --git a/content/book/fa/v2/ch00/_changing_the_status_of_a_pull_request.html b/content/book/fa/v2/ch00/_changing_the_status_of_a_pull_request.html
new file mode 100644
index 0000000000..1197246ba4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_changing_the_status_of_a_pull_request.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_changing_the_status_of_a_pull_request"
+---
diff --git a/content/book/fa/v2/ch00/_check_it_out.html b/content/book/fa/v2/ch00/_check_it_out.html
new file mode 100644
index 0000000000..2cbba143b8
--- /dev/null
+++ b/content/book/fa/v2/ch00/_check_it_out.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_check_it_out"
+---
diff --git a/content/book/fa/v2/ch00/_checking_out_conflicts.html b/content/book/fa/v2/ch00/_checking_out_conflicts.html
new file mode 100644
index 0000000000..ddd8bdfbdb
--- /dev/null
+++ b/content/book/fa/v2/ch00/_checking_out_conflicts.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Advanced-Merging#_checking_out_conflicts"
+---
diff --git a/content/book/fa/v2/ch00/_checking_out_remotes.html b/content/book/fa/v2/ch00/_checking_out_remotes.html
new file mode 100644
index 0000000000..9861040fa0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_checking_out_remotes.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_checking_out_remotes"
+---
diff --git a/content/book/fa/v2/ch00/_checking_status.html b/content/book/fa/v2/ch00/_checking_status.html
new file mode 100644
index 0000000000..fe313856e1
--- /dev/null
+++ b/content/book/fa/v2/ch00/_checking_status.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-ثبت-تغییرات-در-مخزن#_checking_status"
+---
diff --git a/content/book/fa/v2/ch00/_client_side_hooks.html b/content/book/fa/v2/ch00/_client_side_hooks.html
new file mode 100644
index 0000000000..94fb8137c0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_client_side_hooks.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Hooks#_client_side_hooks"
+---
diff --git a/content/book/fa/v2/ch00/_client_side_hooks_2.html b/content/book/fa/v2/ch00/_client_side_hooks_2.html
new file mode 100644
index 0000000000..9b8e8af3d1
--- /dev/null
+++ b/content/book/fa/v2/ch00/_client_side_hooks_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-An-Example-Git-Enforced-Policy#_client_side_hooks_2"
+---
diff --git a/content/book/fa/v2/ch00/_cloning_submodules.html b/content/book/fa/v2/ch00/_cloning_submodules.html
new file mode 100644
index 0000000000..313740b54e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_cloning_submodules.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Submodules#_cloning_submodules"
+---
diff --git a/content/book/fa/v2/ch00/_code_snippets.html b/content/book/fa/v2/ch00/_code_snippets.html
new file mode 100644
index 0000000000..c587b93bb8
--- /dev/null
+++ b/content/book/fa/v2/ch00/_code_snippets.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_code_snippets"
+---
diff --git a/content/book/fa/v2/ch00/_collaborating_on_the_pull_request.html b/content/book/fa/v2/ch00/_collaborating_on_the_pull_request.html
new file mode 100644
index 0000000000..3918887b94
--- /dev/null
+++ b/content/book/fa/v2/ch00/_collaborating_on_the_pull_request.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_collaborating_on_the_pull_request"
+---
diff --git a/content/book/fa/v2/ch00/_color.html b/content/book/fa/v2/ch00/_color.html
new file mode 100644
index 0000000000..3b21a72951
--- /dev/null
+++ b/content/book/fa/v2/ch00/_color.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_color"
+---
diff --git a/content/book/fa/v2/ch00/_color_ui.html b/content/book/fa/v2/ch00/_color_ui.html
new file mode 100644
index 0000000000..a4e9c62fa0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_color_ui.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_color_ui"
+---
diff --git a/content/book/fa/v2/ch00/_colors_in_git.html b/content/book/fa/v2/ch00/_colors_in_git.html
new file mode 100644
index 0000000000..b027ce96e7
--- /dev/null
+++ b/content/book/fa/v2/ch00/_colors_in_git.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_colors_in_git"
+---
diff --git a/content/book/fa/v2/ch00/_combined_diff_format.html b/content/book/fa/v2/ch00/_combined_diff_format.html
new file mode 100644
index 0000000000..7154d6c207
--- /dev/null
+++ b/content/book/fa/v2/ch00/_combined_diff_format.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Advanced-Merging#_combined_diff_format"
+---
diff --git a/content/book/fa/v2/ch00/_command_line_git.html b/content/book/fa/v2/ch00/_command_line_git.html
new file mode 100644
index 0000000000..b05d389d1f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_command_line_git.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-Command-line-Git#_command_line_git"
+---
diff --git a/content/book/fa/v2/ch00/_commenting_on_an_issue.html b/content/book/fa/v2/ch00/_commenting_on_an_issue.html
new file mode 100644
index 0000000000..456ac87cb6
--- /dev/null
+++ b/content/book/fa/v2/ch00/_commenting_on_an_issue.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_commenting_on_an_issue"
+---
diff --git a/content/book/fa/v2/ch00/_commit_guidelines.html b/content/book/fa/v2/ch00/_commit_guidelines.html
new file mode 100644
index 0000000000..4f3e72f69c
--- /dev/null
+++ b/content/book/fa/v2/ch00/_commit_guidelines.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-مشارکت-در-یک-پروژه#_commit_guidelines"
+---
diff --git a/content/book/fa/v2/ch00/_commit_ranges.html b/content/book/fa/v2/ch00/_commit_ranges.html
new file mode 100644
index 0000000000..2b6a6219fb
--- /dev/null
+++ b/content/book/fa/v2/ch00/_commit_ranges.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Revision-Selection#_commit_ranges"
+---
diff --git a/content/book/fa/v2/ch00/_commit_status.html b/content/book/fa/v2/ch00/_commit_status.html
new file mode 100644
index 0000000000..e66bb65232
--- /dev/null
+++ b/content/book/fa/v2/ch00/_commit_status.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_commit_status"
+---
diff --git a/content/book/fa/v2/ch00/_commit_template.html b/content/book/fa/v2/ch00/_commit_template.html
new file mode 100644
index 0000000000..6c5b539b3d
--- /dev/null
+++ b/content/book/fa/v2/ch00/_commit_template.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_commit_template"
+---
diff --git a/content/book/fa/v2/ch00/_committing.html b/content/book/fa/v2/ch00/_committing.html
new file mode 100644
index 0000000000..9f19da36b5
--- /dev/null
+++ b/content/book/fa/v2/ch00/_committing.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Environment-Variables#_committing"
+---
diff --git a/content/book/fa/v2/ch00/_committing_back_to_subversion.html b/content/book/fa/v2/ch00/_committing_back_to_subversion.html
new file mode 100644
index 0000000000..ac898ba941
--- /dev/null
+++ b/content/book/fa/v2/ch00/_committing_back_to_subversion.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_committing_back_to_subversion"
+---
diff --git a/content/book/fa/v2/ch00/_committing_changes.html b/content/book/fa/v2/ch00/_committing_changes.html
new file mode 100644
index 0000000000..87d9dfeeb4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_committing_changes.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-ثبت-تغییرات-در-مخزن#_committing_changes"
+---
diff --git a/content/book/fa/v2/ch00/_committing_workflow_hooks.html b/content/book/fa/v2/ch00/_committing_workflow_hooks.html
new file mode 100644
index 0000000000..d2e750411f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_committing_workflow_hooks.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Hooks#_committing_workflow_hooks"
+---
diff --git a/content/book/fa/v2/ch00/_contrib_file.html b/content/book/fa/v2/ch00/_contrib_file.html
new file mode 100644
index 0000000000..3d90350854
--- /dev/null
+++ b/content/book/fa/v2/ch00/_contrib_file.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_contrib_file"
+---
diff --git a/content/book/fa/v2/ch00/_contributing.html b/content/book/fa/v2/ch00/_contributing.html
new file mode 100644
index 0000000000..5ef28c317f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_contributing.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_contributing"
+---
diff --git a/content/book/fa/v2/ch00/_contributing_project.html b/content/book/fa/v2/ch00/_contributing_project.html
new file mode 100644
index 0000000000..9707b491e1
--- /dev/null
+++ b/content/book/fa/v2/ch00/_contributing_project.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-مشارکت-در-یک-پروژه#_contributing_project"
+---
diff --git a/content/book/fa/v2/ch00/_contributing_to_a_project.html b/content/book/fa/v2/ch00/_contributing_to_a_project.html
new file mode 100644
index 0000000000..402f3a328f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_contributing_to_a_project.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_contributing_to_a_project"
+---
diff --git a/content/book/fa/v2/ch00/_core_autocrlf.html b/content/book/fa/v2/ch00/_core_autocrlf.html
new file mode 100644
index 0000000000..1eb0b6c483
--- /dev/null
+++ b/content/book/fa/v2/ch00/_core_autocrlf.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_core_autocrlf"
+---
diff --git a/content/book/fa/v2/ch00/_core_editor.html b/content/book/fa/v2/ch00/_core_editor.html
new file mode 100644
index 0000000000..14eaff5e62
--- /dev/null
+++ b/content/book/fa/v2/ch00/_core_editor.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Setup-and-Config#_core_editor"
+---
diff --git a/content/book/fa/v2/ch00/_core_excludesfile.html b/content/book/fa/v2/ch00/_core_excludesfile.html
new file mode 100644
index 0000000000..28293b4ff1
--- /dev/null
+++ b/content/book/fa/v2/ch00/_core_excludesfile.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_core_excludesfile"
+---
diff --git a/content/book/fa/v2/ch00/_core_pager.html b/content/book/fa/v2/ch00/_core_pager.html
new file mode 100644
index 0000000000..f1eb63db66
--- /dev/null
+++ b/content/book/fa/v2/ch00/_core_pager.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_core_pager"
+---
diff --git a/content/book/fa/v2/ch00/_core_whitespace.html b/content/book/fa/v2/ch00/_core_whitespace.html
new file mode 100644
index 0000000000..22a5631ed4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_core_whitespace.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_core_whitespace"
+---
diff --git a/content/book/fa/v2/ch00/_create_a_git_repository_from_a_bazaar_repository.html b/content/book/fa/v2/ch00/_create_a_git_repository_from_a_bazaar_repository.html
new file mode 100644
index 0000000000..84b233017f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_create_a_git_repository_from_a_bazaar_repository.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_create_a_git_repository_from_a_bazaar_repository"
+---
diff --git a/content/book/fa/v2/ch00/_create_new_branch.html b/content/book/fa/v2/ch00/_create_new_branch.html
new file mode 100644
index 0000000000..aecda7b381
--- /dev/null
+++ b/content/book/fa/v2/ch00/_create_new_branch.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-شاخهها-در-یک-کلمه#_create_new_branch"
+---
diff --git a/content/book/fa/v2/ch00/_creating_a_branch_from_a_stash.html b/content/book/fa/v2/ch00/_creating_a_branch_from_a_stash.html
new file mode 100644
index 0000000000..154fce7937
--- /dev/null
+++ b/content/book/fa/v2/ch00/_creating_a_branch_from_a_stash.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Stashing-and-Cleaning#_creating_a_branch_from_a_stash"
+---
diff --git a/content/book/fa/v2/ch00/_creating_a_new_repository.html b/content/book/fa/v2/ch00/_creating_a_new_repository.html
new file mode 100644
index 0000000000..5b175c1e6c
--- /dev/null
+++ b/content/book/fa/v2/ch00/_creating_a_new_repository.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_creating_a_new_repository"
+---
diff --git a/content/book/fa/v2/ch00/_creating_a_new_svn_branch.html b/content/book/fa/v2/ch00/_creating_a_new_svn_branch.html
new file mode 100644
index 0000000000..246cffcfae
--- /dev/null
+++ b/content/book/fa/v2/ch00/_creating_a_new_svn_branch.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_creating_a_new_svn_branch"
+---
diff --git a/content/book/fa/v2/ch00/_creating_a_pull_request.html b/content/book/fa/v2/ch00/_creating_a_pull_request.html
new file mode 100644
index 0000000000..7575d023c0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_creating_a_pull_request.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_creating_a_pull_request"
+---
diff --git a/content/book/fa/v2/ch00/_creative_stashing.html b/content/book/fa/v2/ch00/_creative_stashing.html
new file mode 100644
index 0000000000..b8b91d8d35
--- /dev/null
+++ b/content/book/fa/v2/ch00/_creative_stashing.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Stashing-and-Cleaning#_creative_stashing"
+---
diff --git a/content/book/fa/v2/ch00/_credential_caching.html b/content/book/fa/v2/ch00/_credential_caching.html
new file mode 100644
index 0000000000..f47328c5e0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_credential_caching.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Credential-Storage#_credential_caching"
+---
diff --git a/content/book/fa/v2/ch00/_custom_importer.html b/content/book/fa/v2/ch00/_custom_importer.html
new file mode 100644
index 0000000000..9fed748913
--- /dev/null
+++ b/content/book/fa/v2/ch00/_custom_importer.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Migrating-to-Git#_custom_importer"
+---
diff --git a/content/book/fa/v2/ch00/_data_recovery.html b/content/book/fa/v2/ch00/_data_recovery.html
new file mode 100644
index 0000000000..528f97b851
--- /dev/null
+++ b/content/book/fa/v2/ch00/_data_recovery.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Maintenance-and-Data-Recovery#_data_recovery"
+---
diff --git a/content/book/fa/v2/ch00/_debugging.html b/content/book/fa/v2/ch00/_debugging.html
new file mode 100644
index 0000000000..b0f6202f13
--- /dev/null
+++ b/content/book/fa/v2/ch00/_debugging.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Environment-Variables#_debugging"
+---
diff --git a/content/book/fa/v2/ch00/_debugging_2.html b/content/book/fa/v2/ch00/_debugging_2.html
new file mode 100644
index 0000000000..9dc407cd51
--- /dev/null
+++ b/content/book/fa/v2/ch00/_debugging_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Debugging#_debugging_2"
+---
diff --git a/content/book/fa/v2/ch00/_debugging_with_git.html b/content/book/fa/v2/ch00/_debugging_with_git.html
new file mode 100644
index 0000000000..20130529de
--- /dev/null
+++ b/content/book/fa/v2/ch00/_debugging_with_git.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Debugging-with-Git#_debugging_with_git"
+---
diff --git a/content/book/fa/v2/ch00/_default_branch.html b/content/book/fa/v2/ch00/_default_branch.html
new file mode 100644
index 0000000000..465fb205cf
--- /dev/null
+++ b/content/book/fa/v2/ch00/_default_branch.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_default_branch"
+---
diff --git a/content/book/fa/v2/ch00/_delete_branches.html b/content/book/fa/v2/ch00/_delete_branches.html
new file mode 100644
index 0000000000..801dee5ae8
--- /dev/null
+++ b/content/book/fa/v2/ch00/_delete_branches.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-شاخههای-ریموت#_delete_branches"
+---
diff --git a/content/book/fa/v2/ch00/_deleting_references.html b/content/book/fa/v2/ch00/_deleting_references.html
new file mode 100644
index 0000000000..4c6bade302
--- /dev/null
+++ b/content/book/fa/v2/ch00/_deleting_references.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-The-Refspec#_deleting_references"
+---
diff --git a/content/book/fa/v2/ch00/_diffing_and_merging.html b/content/book/fa/v2/ch00/_diffing_and_merging.html
new file mode 100644
index 0000000000..290fb88f82
--- /dev/null
+++ b/content/book/fa/v2/ch00/_diffing_and_merging.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Environment-Variables#_diffing_and_merging"
+---
diff --git a/content/book/fa/v2/ch00/_diffing_binary_files.html b/content/book/fa/v2/ch00/_diffing_binary_files.html
new file mode 100644
index 0000000000..1243a4a045
--- /dev/null
+++ b/content/book/fa/v2/ch00/_diffing_binary_files.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Attributes#_diffing_binary_files"
+---
diff --git a/content/book/fa/v2/ch00/_double_dot.html b/content/book/fa/v2/ch00/_double_dot.html
new file mode 100644
index 0000000000..4b0f7bddc3
--- /dev/null
+++ b/content/book/fa/v2/ch00/_double_dot.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Revision-Selection#_double_dot"
+---
diff --git a/content/book/fa/v2/ch00/_downloading_data.html b/content/book/fa/v2/ch00/_downloading_data.html
new file mode 100644
index 0000000000..c60c6ad169
--- /dev/null
+++ b/content/book/fa/v2/ch00/_downloading_data.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Transfer-Protocols#_downloading_data"
+---
diff --git a/content/book/fa/v2/ch00/_dulwich.html b/content/book/fa/v2/ch00/_dulwich.html
new file mode 100644
index 0000000000..b5bc731e8f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_dulwich.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-Dulwich#_dulwich"
+---
diff --git a/content/book/fa/v2/ch00/_editor.html b/content/book/fa/v2/ch00/_editor.html
new file mode 100644
index 0000000000..6e7938061e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_editor.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-اولین-راهاندازی-گیت#_editor"
+---
diff --git a/content/book/fa/v2/ch00/_eg_task_lists.html b/content/book/fa/v2/ch00/_eg_task_lists.html
new file mode 100644
index 0000000000..afa87201bf
--- /dev/null
+++ b/content/book/fa/v2/ch00/_eg_task_lists.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_eg_task_lists"
+---
diff --git a/content/book/fa/v2/ch00/_email.html b/content/book/fa/v2/ch00/_email.html
new file mode 100644
index 0000000000..fb12fce225
--- /dev/null
+++ b/content/book/fa/v2/ch00/_email.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Email#_email"
+---
diff --git a/content/book/fa/v2/ch00/_email_hooks.html b/content/book/fa/v2/ch00/_email_hooks.html
new file mode 100644
index 0000000000..e44da9ce65
--- /dev/null
+++ b/content/book/fa/v2/ch00/_email_hooks.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Hooks#_email_hooks"
+---
diff --git a/content/book/fa/v2/ch00/_email_notification.html b/content/book/fa/v2/ch00/_email_notification.html
new file mode 100644
index 0000000000..7b5a0fe6c7
--- /dev/null
+++ b/content/book/fa/v2/ch00/_email_notification.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_email_notification"
+---
diff --git a/content/book/fa/v2/ch00/_email_notifications.html b/content/book/fa/v2/ch00/_email_notifications.html
new file mode 100644
index 0000000000..4582ac3274
--- /dev/null
+++ b/content/book/fa/v2/ch00/_email_notifications.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_email_notifications"
+---
diff --git a/content/book/fa/v2/ch00/_email_notifications_2.html b/content/book/fa/v2/ch00/_email_notifications_2.html
new file mode 100644
index 0000000000..4b59d9b6c2
--- /dev/null
+++ b/content/book/fa/v2/ch00/_email_notifications_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_email_notifications_2"
+---
diff --git a/content/book/fa/v2/ch00/_email_pr.html b/content/book/fa/v2/ch00/_email_pr.html
new file mode 100644
index 0000000000..2f0f3b4582
--- /dev/null
+++ b/content/book/fa/v2/ch00/_email_pr.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_email_pr"
+---
diff --git a/content/book/fa/v2/ch00/_emoji.html b/content/book/fa/v2/ch00/_emoji.html
new file mode 100644
index 0000000000..b20b0fef85
--- /dev/null
+++ b/content/book/fa/v2/ch00/_emoji.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_emoji"
+---
diff --git a/content/book/fa/v2/ch00/_enforcing_a_user_based_acl_system.html b/content/book/fa/v2/ch00/_enforcing_a_user_based_acl_system.html
new file mode 100644
index 0000000000..210a616238
--- /dev/null
+++ b/content/book/fa/v2/ch00/_enforcing_a_user_based_acl_system.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-An-Example-Git-Enforced-Policy#_enforcing_a_user_based_acl_system"
+---
diff --git a/content/book/fa/v2/ch00/_enforcing_commit_message_format.html b/content/book/fa/v2/ch00/_enforcing_commit_message_format.html
new file mode 100644
index 0000000000..920d243c0e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_enforcing_commit_message_format.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-An-Example-Git-Enforced-Policy#_enforcing_commit_message_format"
+---
diff --git a/content/book/fa/v2/ch00/_environment_variables.html b/content/book/fa/v2/ch00/_environment_variables.html
new file mode 100644
index 0000000000..d0183984c9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_environment_variables.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Environment-Variables#_environment_variables"
+---
diff --git a/content/book/fa/v2/ch00/_everyone_must_sign.html b/content/book/fa/v2/ch00/_everyone_must_sign.html
new file mode 100644
index 0000000000..1a50f244cb
--- /dev/null
+++ b/content/book/fa/v2/ch00/_everyone_must_sign.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Signing-Your-Work#_everyone_must_sign"
+---
diff --git a/content/book/fa/v2/ch00/_example_markdown.html b/content/book/fa/v2/ch00/_example_markdown.html
new file mode 100644
index 0000000000..9307231b4c
--- /dev/null
+++ b/content/book/fa/v2/ch00/_example_markdown.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_example_markdown"
+---
diff --git a/content/book/fa/v2/ch00/_export_ignore.html b/content/book/fa/v2/ch00/_export_ignore.html
new file mode 100644
index 0000000000..86e20eeafc
--- /dev/null
+++ b/content/book/fa/v2/ch00/_export_ignore.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Attributes#_export_ignore"
+---
diff --git a/content/book/fa/v2/ch00/_export_subst.html b/content/book/fa/v2/ch00/_export_subst.html
new file mode 100644
index 0000000000..898cb0327a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_export_subst.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Attributes#_export_subst"
+---
diff --git a/content/book/fa/v2/ch00/_exporting_your_repository.html b/content/book/fa/v2/ch00/_exporting_your_repository.html
new file mode 100644
index 0000000000..2bacd76722
--- /dev/null
+++ b/content/book/fa/v2/ch00/_exporting_your_repository.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Attributes#_exporting_your_repository"
+---
diff --git a/content/book/fa/v2/ch00/_external_merge_tools.html b/content/book/fa/v2/ch00/_external_merge_tools.html
new file mode 100644
index 0000000000..6f7229b1fd
--- /dev/null
+++ b/content/book/fa/v2/ch00/_external_merge_tools.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_external_merge_tools"
+---
diff --git a/content/book/fa/v2/ch00/_external_systems.html b/content/book/fa/v2/ch00/_external_systems.html
new file mode 100644
index 0000000000..e8dd97c9e1
--- /dev/null
+++ b/content/book/fa/v2/ch00/_external_systems.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-External-Systems#_external_systems"
+---
diff --git a/content/book/fa/v2/ch00/_fetch_and_push_on_different_repositories.html b/content/book/fa/v2/ch00/_fetch_and_push_on_different_repositories.html
new file mode 100644
index 0000000000..475d2b42cf
--- /dev/null
+++ b/content/book/fa/v2/ch00/_fetch_and_push_on_different_repositories.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_fetch_and_push_on_different_repositories"
+---
diff --git a/content/book/fa/v2/ch00/_fetch_the_changes_of_the_remote_repository.html b/content/book/fa/v2/ch00/_fetch_the_changes_of_the_remote_repository.html
new file mode 100644
index 0000000000..2ea1f860e4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_fetch_the_changes_of_the_remote_repository.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_fetch_the_changes_of_the_remote_repository"
+---
diff --git a/content/book/fa/v2/ch00/_fetching_and_pulling.html b/content/book/fa/v2/ch00/_fetching_and_pulling.html
new file mode 100644
index 0000000000..355938633f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_fetching_and_pulling.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-کار-با-ریموتها#_fetching_and_pulling"
+---
diff --git a/content/book/fa/v2/ch00/_file_annotation.html b/content/book/fa/v2/ch00/_file_annotation.html
new file mode 100644
index 0000000000..56805adc26
--- /dev/null
+++ b/content/book/fa/v2/ch00/_file_annotation.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Debugging-with-Git#_file_annotation"
+---
diff --git a/content/book/fa/v2/ch00/_first_time.html b/content/book/fa/v2/ch00/_first_time.html
new file mode 100644
index 0000000000..65324cf8bb
--- /dev/null
+++ b/content/book/fa/v2/ch00/_first_time.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-اولین-راهاندازی-گیت#_first_time"
+---
diff --git a/content/book/fa/v2/ch00/_fix_the_references.html b/content/book/fa/v2/ch00/_fix_the_references.html
new file mode 100644
index 0000000000..3656e3f215
--- /dev/null
+++ b/content/book/fa/v2/ch00/_fix_the_references.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Advanced-Merging#_fix_the_references"
+---
diff --git a/content/book/fa/v2/ch00/_forking_projects.html b/content/book/fa/v2/ch00/_forking_projects.html
new file mode 100644
index 0000000000..ed2f4be9ec
--- /dev/null
+++ b/content/book/fa/v2/ch00/_forking_projects.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_forking_projects"
+---
diff --git a/content/book/fa/v2/ch00/_formatting_and_whitespace.html b/content/book/fa/v2/ch00/_formatting_and_whitespace.html
new file mode 100644
index 0000000000..7f0551a7ff
--- /dev/null
+++ b/content/book/fa/v2/ch00/_formatting_and_whitespace.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_formatting_and_whitespace"
+---
diff --git a/content/book/fa/v2/ch00/_from_source.html b/content/book/fa/v2/ch00/_from_source.html
new file mode 100644
index 0000000000..666102b086
--- /dev/null
+++ b/content/book/fa/v2/ch00/_from_source.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Git-in-PowerShell#_from_source"
+---
diff --git a/content/book/fa/v2/ch00/_further_reading.html b/content/book/fa/v2/ch00/_further_reading.html
new file mode 100644
index 0000000000..77456f5c44
--- /dev/null
+++ b/content/book/fa/v2/ch00/_further_reading.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-Libgit2#_further_reading"
+---
diff --git a/content/book/fa/v2/ch00/_further_reading_2.html b/content/book/fa/v2/ch00/_further_reading_2.html
new file mode 100644
index 0000000000..1fe164456b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_further_reading_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-JGit#_further_reading_2"
+---
diff --git a/content/book/fa/v2/ch00/_further_reading_3.html b/content/book/fa/v2/ch00/_further_reading_3.html
new file mode 100644
index 0000000000..0bde4bb3fa
--- /dev/null
+++ b/content/book/fa/v2/ch00/_further_reading_3.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-go-git#_further_reading_3"
+---
diff --git a/content/book/fa/v2/ch00/_further_reading_4.html b/content/book/fa/v2/ch00/_further_reading_4.html
new file mode 100644
index 0000000000..088a6a013a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_further_reading_4.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-Dulwich#_further_reading_4"
+---
diff --git a/content/book/fa/v2/ch00/_fusion_configuration.html b/content/book/fa/v2/ch00/_fusion_configuration.html
new file mode 100644
index 0000000000..87ee0fe780
--- /dev/null
+++ b/content/book/fa/v2/ch00/_fusion_configuration.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_fusion_configuration"
+---
diff --git a/content/book/fa/v2/ch00/_generate_ssh_key.html b/content/book/fa/v2/ch00/_generate_ssh_key.html
new file mode 100644
index 0000000000..0dce8bddbe
--- /dev/null
+++ b/content/book/fa/v2/ch00/_generate_ssh_key.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-ساختن-کلید-عمومی-SSH#_generate_ssh_key"
+---
diff --git a/content/book/fa/v2/ch00/_getting_a_repo.html b/content/book/fa/v2/ch00/_getting_a_repo.html
new file mode 100644
index 0000000000..3256feddb4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_getting_a_repo.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-دستیابی-به-یک-مخزن-گیت#_getting_a_repo"
+---
diff --git a/content/book/fa/v2/ch00/_getting_and_creating_projects.html b/content/book/fa/v2/ch00/_getting_and_creating_projects.html
new file mode 100644
index 0000000000..8f18a67b3d
--- /dev/null
+++ b/content/book/fa/v2/ch00/_getting_and_creating_projects.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Getting-and-Creating-Projects#_getting_and_creating_projects"
+---
diff --git a/content/book/fa/v2/ch00/_getting_git_on_a_server.html b/content/book/fa/v2/ch00/_getting_git_on_a_server.html
new file mode 100644
index 0000000000..dcafe1b197
--- /dev/null
+++ b/content/book/fa/v2/ch00/_getting_git_on_a_server.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-راهاندازی-گیت-در-سرور#_getting_git_on_a_server"
+---
diff --git a/content/book/fa/v2/ch00/_getting_set_up.html b/content/book/fa/v2/ch00/_getting_set_up.html
new file mode 100644
index 0000000000..51d3d3e646
--- /dev/null
+++ b/content/book/fa/v2/ch00/_getting_set_up.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-JGit#_getting_set_up"
+---
diff --git a/content/book/fa/v2/ch00/_getting_started.html b/content/book/fa/v2/ch00/_getting_started.html
new file mode 100644
index 0000000000..1ea2776a91
--- /dev/null
+++ b/content/book/fa/v2/ch00/_getting_started.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_getting_started"
+---
diff --git a/content/book/fa/v2/ch00/_getting_started_2.html b/content/book/fa/v2/ch00/_getting_started_2.html
new file mode 100644
index 0000000000..408a2ced54
--- /dev/null
+++ b/content/book/fa/v2/ch00/_getting_started_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_getting_started_2"
+---
diff --git a/content/book/fa/v2/ch00/_getting_started_3.html b/content/book/fa/v2/ch00/_getting_started_3.html
new file mode 100644
index 0000000000..90edab75fa
--- /dev/null
+++ b/content/book/fa/v2/ch00/_getting_started_3.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_getting_started_3"
+---
diff --git a/content/book/fa/v2/ch00/_getting_started_git_tf.html b/content/book/fa/v2/ch00/_getting_started_git_tf.html
new file mode 100644
index 0000000000..f774b8e086
--- /dev/null
+++ b/content/book/fa/v2/ch00/_getting_started_git_tf.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_getting_started_git_tf"
+---
diff --git a/content/book/fa/v2/ch00/_getting_started_git_tfs.html b/content/book/fa/v2/ch00/_getting_started_git_tfs.html
new file mode 100644
index 0000000000..6910cd2ef3
--- /dev/null
+++ b/content/book/fa/v2/ch00/_getting_started_git_tfs.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_getting_started_git_tfs"
+---
diff --git a/content/book/fa/v2/ch00/_getting_the_bzr_fastimport_plugin.html b/content/book/fa/v2/ch00/_getting_the_bzr_fastimport_plugin.html
new file mode 100644
index 0000000000..a6a9f89558
--- /dev/null
+++ b/content/book/fa/v2/ch00/_getting_the_bzr_fastimport_plugin.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Migrating-to-Git#_getting_the_bzr_fastimport_plugin"
+---
diff --git a/content/book/fa/v2/ch00/_git_add.html b/content/book/fa/v2/ch00/_git_add.html
new file mode 100644
index 0000000000..89c272ea85
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_add.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Basic-Snapshotting#_git_add"
+---
diff --git a/content/book/fa/v2/ch00/_git_aliases.html b/content/book/fa/v2/ch00/_git_aliases.html
new file mode 100644
index 0000000000..822cd02f28
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_aliases.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-نامهای-مستعار-در-گیت#_git_aliases"
+---
diff --git a/content/book/fa/v2/ch00/_git_am.html b/content/book/fa/v2/ch00/_git_am.html
new file mode 100644
index 0000000000..02bb87cd9f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_am.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_git_am"
+---
diff --git a/content/book/fa/v2/ch00/_git_am_2.html b/content/book/fa/v2/ch00/_git_am_2.html
new file mode 100644
index 0000000000..212799c455
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_am_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Email#_git_am_2"
+---
diff --git a/content/book/fa/v2/ch00/_git_amend.html b/content/book/fa/v2/ch00/_git_amend.html
new file mode 100644
index 0000000000..5fd1fe4662
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_amend.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Rewriting-History#_git_amend"
+---
diff --git a/content/book/fa/v2/ch00/_git_and_bazaar.html b/content/book/fa/v2/ch00/_git_and_bazaar.html
new file mode 100644
index 0000000000..97d3657a8b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_and_bazaar.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_and_bazaar"
+---
diff --git a/content/book/fa/v2/ch00/_git_and_mercurial.html b/content/book/fa/v2/ch00/_git_and_mercurial.html
new file mode 100644
index 0000000000..8ca1b4ab75
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_and_mercurial.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_and_mercurial"
+---
diff --git a/content/book/fa/v2/ch00/_git_and_perforce.html b/content/book/fa/v2/ch00/_git_and_perforce.html
new file mode 100644
index 0000000000..d38d0815eb
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_and_perforce.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_and_perforce"
+---
diff --git a/content/book/fa/v2/ch00/_git_and_perforce_summary.html b/content/book/fa/v2/ch00/_git_and_perforce_summary.html
new file mode 100644
index 0000000000..d634b5c85e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_and_perforce_summary.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_and_perforce_summary"
+---
diff --git a/content/book/fa/v2/ch00/_git_and_tfs.html b/content/book/fa/v2/ch00/_git_and_tfs.html
new file mode 100644
index 0000000000..ff337183e0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_and_tfs.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_and_tfs"
+---
diff --git a/content/book/fa/v2/ch00/_git_and_tfs_summary.html b/content/book/fa/v2/ch00/_git_and_tfs_summary.html
new file mode 100644
index 0000000000..5761e7e546
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_and_tfs_summary.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_and_tfs_summary"
+---
diff --git a/content/book/fa/v2/ch00/_git_apply.html b/content/book/fa/v2/ch00/_git_apply.html
new file mode 100644
index 0000000000..3b6e57a03c
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_apply.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Email#_git_apply"
+---
diff --git a/content/book/fa/v2/ch00/_git_archive.html b/content/book/fa/v2/ch00/_git_archive.html
new file mode 100644
index 0000000000..b927008d54
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_archive.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Sharing-and-Updating-Projects#_git_archive"
+---
diff --git a/content/book/fa/v2/ch00/_git_as_a_client.html b/content/book/fa/v2/ch00/_git_as_a_client.html
new file mode 100644
index 0000000000..d5c5004106
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_as_a_client.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_as_a_client"
+---
diff --git a/content/book/fa/v2/ch00/_git_attributes.html b/content/book/fa/v2/ch00/_git_attributes.html
new file mode 100644
index 0000000000..1cb06f76e2
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_attributes.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Attributes#_git_attributes"
+---
diff --git a/content/book/fa/v2/ch00/_git_bisect.html b/content/book/fa/v2/ch00/_git_bisect.html
new file mode 100644
index 0000000000..87e777800f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_bisect.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Debugging#_git_bisect"
+---
diff --git a/content/book/fa/v2/ch00/_git_blame.html b/content/book/fa/v2/ch00/_git_blame.html
new file mode 100644
index 0000000000..bcc50c8e17
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_blame.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Debugging#_git_blame"
+---
diff --git a/content/book/fa/v2/ch00/_git_branch.html b/content/book/fa/v2/ch00/_git_branch.html
new file mode 100644
index 0000000000..6fa69b8f96
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_branch.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Branching-and-Merging#_git_branch"
+---
diff --git a/content/book/fa/v2/ch00/_git_branches_overview.html b/content/book/fa/v2/ch00/_git_branches_overview.html
new file mode 100644
index 0000000000..1a81ebf256
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_branches_overview.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-شاخهها-در-یک-کلمه#_git_branches_overview"
+---
diff --git a/content/book/fa/v2/ch00/_git_branching_issues.html b/content/book/fa/v2/ch00/_git_branching_issues.html
new file mode 100644
index 0000000000..946e28c64f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_branching_issues.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_branching_issues"
+---
diff --git a/content/book/fa/v2/ch00/_git_checkout.html b/content/book/fa/v2/ch00/_git_checkout.html
new file mode 100644
index 0000000000..a8db62e5c8
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_checkout.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Branching-and-Merging#_git_checkout"
+---
diff --git a/content/book/fa/v2/ch00/_git_cherry_pick.html b/content/book/fa/v2/ch00/_git_cherry_pick.html
new file mode 100644
index 0000000000..f12173fea8
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_cherry_pick.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Patching#_git_cherry_pick"
+---
diff --git a/content/book/fa/v2/ch00/_git_clean.html b/content/book/fa/v2/ch00/_git_clean.html
new file mode 100644
index 0000000000..73ba5fe0a2
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_clean.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Stashing-and-Cleaning#_git_clean"
+---
diff --git a/content/book/fa/v2/ch00/_git_clean_2.html b/content/book/fa/v2/ch00/_git_clean_2.html
new file mode 100644
index 0000000000..22d787711b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_clean_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Basic-Snapshotting#_git_clean_2"
+---
diff --git a/content/book/fa/v2/ch00/_git_clone.html b/content/book/fa/v2/ch00/_git_clone.html
new file mode 100644
index 0000000000..cd2828be04
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_clone.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Getting-and-Creating-Projects#_git_clone"
+---
diff --git a/content/book/fa/v2/ch00/_git_cloning.html b/content/book/fa/v2/ch00/_git_cloning.html
new file mode 100644
index 0000000000..e17e95d9a6
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_cloning.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-دستیابی-به-یک-مخزن-گیت#_git_cloning"
+---
diff --git a/content/book/fa/v2/ch00/_git_commit.html b/content/book/fa/v2/ch00/_git_commit.html
new file mode 100644
index 0000000000..592019c3f4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_commit.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Basic-Snapshotting#_git_commit"
+---
diff --git a/content/book/fa/v2/ch00/_git_commit_objects.html b/content/book/fa/v2/ch00/_git_commit_objects.html
new file mode 100644
index 0000000000..7839bf1193
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_commit_objects.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Git-Objects#_git_commit_objects"
+---
diff --git a/content/book/fa/v2/ch00/_git_config.html b/content/book/fa/v2/ch00/_git_config.html
new file mode 100644
index 0000000000..0b387476c9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_config.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_git_config"
+---
diff --git a/content/book/fa/v2/ch00/_git_config_2.html b/content/book/fa/v2/ch00/_git_config_2.html
new file mode 100644
index 0000000000..f58681fbe0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_config_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Setup-and-Config#_git_config_2"
+---
diff --git a/content/book/fa/v2/ch00/_git_describe.html b/content/book/fa/v2/ch00/_git_describe.html
new file mode 100644
index 0000000000..14e3f11cac
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_describe.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Inspection-and-Comparison#_git_describe"
+---
diff --git a/content/book/fa/v2/ch00/_git_diff.html b/content/book/fa/v2/ch00/_git_diff.html
new file mode 100644
index 0000000000..5df3c24c44
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_diff.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Basic-Snapshotting#_git_diff"
+---
diff --git a/content/book/fa/v2/ch00/_git_diff_staged.html b/content/book/fa/v2/ch00/_git_diff_staged.html
new file mode 100644
index 0000000000..ff321531e7
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_diff_staged.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-ثبت-تغییرات-در-مخزن#_git_diff_staged"
+---
diff --git a/content/book/fa/v2/ch00/_git_difftool.html b/content/book/fa/v2/ch00/_git_difftool.html
new file mode 100644
index 0000000000..34c8b5c6a4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_difftool.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Basic-Snapshotting#_git_difftool"
+---
diff --git a/content/book/fa/v2/ch00/_git_fast_import.html b/content/book/fa/v2/ch00/_git_fast_import.html
new file mode 100644
index 0000000000..0cd7d50e73
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_fast_import.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-External-Systems#_git_fast_import"
+---
diff --git a/content/book/fa/v2/ch00/_git_fetch.html b/content/book/fa/v2/ch00/_git_fetch.html
new file mode 100644
index 0000000000..46490e7ebc
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_fetch.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Sharing-and-Updating-Projects#_git_fetch"
+---
diff --git a/content/book/fa/v2/ch00/_git_filter_branch.html b/content/book/fa/v2/ch00/_git_filter_branch.html
new file mode 100644
index 0000000000..2f279eacd2
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_filter_branch.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Administration#_git_filter_branch"
+---
diff --git a/content/book/fa/v2/ch00/_git_format_patch.html b/content/book/fa/v2/ch00/_git_format_patch.html
new file mode 100644
index 0000000000..5d8aa68358
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_format_patch.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Email#_git_format_patch"
+---
diff --git a/content/book/fa/v2/ch00/_git_fsck.html b/content/book/fa/v2/ch00/_git_fsck.html
new file mode 100644
index 0000000000..df8d248f47
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_fsck.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Administration#_git_fsck"
+---
diff --git a/content/book/fa/v2/ch00/_git_fusion_summary.html b/content/book/fa/v2/ch00/_git_fusion_summary.html
new file mode 100644
index 0000000000..9477172de2
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_fusion_summary.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_fusion_summary"
+---
diff --git a/content/book/fa/v2/ch00/_git_gc.html b/content/book/fa/v2/ch00/_git_gc.html
new file mode 100644
index 0000000000..4112fa5d80
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_gc.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Maintenance-and-Data-Recovery#_git_gc"
+---
diff --git a/content/book/fa/v2/ch00/_git_gc_2.html b/content/book/fa/v2/ch00/_git_gc_2.html
new file mode 100644
index 0000000000..f9046982d4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_gc_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Administration#_git_gc_2"
+---
diff --git a/content/book/fa/v2/ch00/_git_grep.html b/content/book/fa/v2/ch00/_git_grep.html
new file mode 100644
index 0000000000..7a483669a5
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_grep.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Searching#_git_grep"
+---
diff --git a/content/book/fa/v2/ch00/_git_grep_2.html b/content/book/fa/v2/ch00/_git_grep_2.html
new file mode 100644
index 0000000000..ba98c57cfc
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_grep_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Debugging#_git_grep_2"
+---
diff --git a/content/book/fa/v2/ch00/_git_help.html b/content/book/fa/v2/ch00/_git_help.html
new file mode 100644
index 0000000000..ad9c0128a4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_help.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-کمک-گرفتن#_git_help"
+---
diff --git a/content/book/fa/v2/ch00/_git_help_2.html b/content/book/fa/v2/ch00/_git_help_2.html
new file mode 100644
index 0000000000..9158dcd0c0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_help_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Setup-and-Config#_git_help_2"
+---
diff --git a/content/book/fa/v2/ch00/_git_hooks.html b/content/book/fa/v2/ch00/_git_hooks.html
new file mode 100644
index 0000000000..945f3cb8ed
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_hooks.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Hooks#_git_hooks"
+---
diff --git a/content/book/fa/v2/ch00/_git_imap_send.html b/content/book/fa/v2/ch00/_git_imap_send.html
new file mode 100644
index 0000000000..f79b9b7bee
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_imap_send.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Email#_git_imap_send"
+---
diff --git a/content/book/fa/v2/ch00/_git_in_bash.html b/content/book/fa/v2/ch00/_git_in_bash.html
new file mode 100644
index 0000000000..f3fff98a43
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_in_bash.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Git-in-Bash#_git_in_bash"
+---
diff --git a/content/book/fa/v2/ch00/_git_in_eclipse.html b/content/book/fa/v2/ch00/_git_in_eclipse.html
new file mode 100644
index 0000000000..73bcae01b9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_in_eclipse.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Git-in-Eclipse#_git_in_eclipse"
+---
diff --git a/content/book/fa/v2/ch00/_git_in_intellij_pycharm_webstorm_phpstorm_rubymine.html b/content/book/fa/v2/ch00/_git_in_intellij_pycharm_webstorm_phpstorm_rubymine.html
new file mode 100644
index 0000000000..89e4ee7c44
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_in_intellij_pycharm_webstorm_phpstorm_rubymine.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Git-in-IntelliJ-/-PyCharm-/-WebStorm-/-PhpStorm-/-RubyMine#_git_in_intellij_pycharm_webstorm_phpstorm_rubymine"
+---
diff --git a/content/book/fa/v2/ch00/_git_in_sublime_text.html b/content/book/fa/v2/ch00/_git_in_sublime_text.html
new file mode 100644
index 0000000000..f0e0a71670
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_in_sublime_text.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Git-in-Sublime-Text#_git_in_sublime_text"
+---
diff --git a/content/book/fa/v2/ch00/_git_in_visual_studio.html b/content/book/fa/v2/ch00/_git_in_visual_studio.html
new file mode 100644
index 0000000000..2347e1f2f2
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_in_visual_studio.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Git-in-Visual-Studio#_git_in_visual_studio"
+---
diff --git a/content/book/fa/v2/ch00/_git_in_visual_studio_code.html b/content/book/fa/v2/ch00/_git_in_visual_studio_code.html
new file mode 100644
index 0000000000..2317582025
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_in_visual_studio_code.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Git-in-Visual-Studio-Code#_git_in_visual_studio_code"
+---
diff --git a/content/book/fa/v2/ch00/_git_in_zsh.html b/content/book/fa/v2/ch00/_git_in_zsh.html
new file mode 100644
index 0000000000..2ef15fb961
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_in_zsh.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Git-in-Zsh#_git_in_zsh"
+---
diff --git a/content/book/fa/v2/ch00/_git_init.html b/content/book/fa/v2/ch00/_git_init.html
new file mode 100644
index 0000000000..38000a4159
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_init.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Getting-and-Creating-Projects#_git_init"
+---
diff --git a/content/book/fa/v2/ch00/_git_log.html b/content/book/fa/v2/ch00/_git_log.html
new file mode 100644
index 0000000000..4cb37102d4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_log.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Branching-and-Merging#_git_log"
+---
diff --git a/content/book/fa/v2/ch00/_git_log_searching.html b/content/book/fa/v2/ch00/_git_log_searching.html
new file mode 100644
index 0000000000..1e2ea6021e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_log_searching.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Searching#_git_log_searching"
+---
diff --git a/content/book/fa/v2/ch00/_git_merge.html b/content/book/fa/v2/ch00/_git_merge.html
new file mode 100644
index 0000000000..4edfe87dd9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_merge.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Branching-and-Merging#_git_merge"
+---
diff --git a/content/book/fa/v2/ch00/_git_mergetool.html b/content/book/fa/v2/ch00/_git_mergetool.html
new file mode 100644
index 0000000000..7f4f7907ac
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_mergetool.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Branching-and-Merging#_git_mergetool"
+---
diff --git a/content/book/fa/v2/ch00/_git_mv.html b/content/book/fa/v2/ch00/_git_mv.html
new file mode 100644
index 0000000000..0e03394c67
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_mv.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-ثبت-تغییرات-در-مخزن#_git_mv"
+---
diff --git a/content/book/fa/v2/ch00/_git_mv_2.html b/content/book/fa/v2/ch00/_git_mv_2.html
new file mode 100644
index 0000000000..abb89fb10e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_mv_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Basic-Snapshotting#_git_mv_2"
+---
diff --git a/content/book/fa/v2/ch00/_git_p4.html b/content/book/fa/v2/ch00/_git_p4.html
new file mode 100644
index 0000000000..972e9a5ab9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_p4.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Migrating-to-Git#_git_p4"
+---
diff --git a/content/book/fa/v2/ch00/_git_p4_branches.html b/content/book/fa/v2/ch00/_git_p4_branches.html
new file mode 100644
index 0000000000..f3369e145b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_p4_branches.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_p4_branches"
+---
diff --git a/content/book/fa/v2/ch00/_git_p4_client.html b/content/book/fa/v2/ch00/_git_p4_client.html
new file mode 100644
index 0000000000..0d82234000
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_p4_client.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_p4_client"
+---
diff --git a/content/book/fa/v2/ch00/_git_powershell.html b/content/book/fa/v2/ch00/_git_powershell.html
new file mode 100644
index 0000000000..2376d8178b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_powershell.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Git-in-PowerShell#_git_powershell"
+---
diff --git a/content/book/fa/v2/ch00/_git_pull.html b/content/book/fa/v2/ch00/_git_pull.html
new file mode 100644
index 0000000000..c1e262cb5a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_pull.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Sharing-and-Updating-Projects#_git_pull"
+---
diff --git a/content/book/fa/v2/ch00/_git_push.html b/content/book/fa/v2/ch00/_git_push.html
new file mode 100644
index 0000000000..971e3c2f45
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_push.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Sharing-and-Updating-Projects#_git_push"
+---
diff --git a/content/book/fa/v2/ch00/_git_rebase.html b/content/book/fa/v2/ch00/_git_rebase.html
new file mode 100644
index 0000000000..06537ccfe0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_rebase.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Patching#_git_rebase"
+---
diff --git a/content/book/fa/v2/ch00/_git_reflog.html b/content/book/fa/v2/ch00/_git_reflog.html
new file mode 100644
index 0000000000..c68b8c64a3
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_reflog.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Revision-Selection#_git_reflog"
+---
diff --git a/content/book/fa/v2/ch00/_git_reflog_2.html b/content/book/fa/v2/ch00/_git_reflog_2.html
new file mode 100644
index 0000000000..d4d941e78b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_reflog_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Administration#_git_reflog_2"
+---
diff --git a/content/book/fa/v2/ch00/_git_refs.html b/content/book/fa/v2/ch00/_git_refs.html
new file mode 100644
index 0000000000..c950290b3c
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_refs.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Git-References#_git_refs"
+---
diff --git a/content/book/fa/v2/ch00/_git_remote.html b/content/book/fa/v2/ch00/_git_remote.html
new file mode 100644
index 0000000000..9cdf1ae62d
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_remote.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Sharing-and-Updating-Projects#_git_remote"
+---
diff --git a/content/book/fa/v2/ch00/_git_remote_hg.html b/content/book/fa/v2/ch00/_git_remote_hg.html
new file mode 100644
index 0000000000..d683461dfe
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_remote_hg.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_remote_hg"
+---
diff --git a/content/book/fa/v2/ch00/_git_request_pull.html b/content/book/fa/v2/ch00/_git_request_pull.html
new file mode 100644
index 0000000000..3f82ca38f6
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_request_pull.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Email#_git_request_pull"
+---
diff --git a/content/book/fa/v2/ch00/_git_reset.html b/content/book/fa/v2/ch00/_git_reset.html
new file mode 100644
index 0000000000..9ca1e81857
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_reset.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_git_reset"
+---
diff --git a/content/book/fa/v2/ch00/_git_reset_2.html b/content/book/fa/v2/ch00/_git_reset_2.html
new file mode 100644
index 0000000000..142533e198
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_reset_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Basic-Snapshotting#_git_reset_2"
+---
diff --git a/content/book/fa/v2/ch00/_git_revert.html b/content/book/fa/v2/ch00/_git_revert.html
new file mode 100644
index 0000000000..c5bc10f5af
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_revert.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Patching#_git_revert"
+---
diff --git a/content/book/fa/v2/ch00/_git_rm.html b/content/book/fa/v2/ch00/_git_rm.html
new file mode 100644
index 0000000000..0486794296
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_rm.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Basic-Snapshotting#_git_rm"
+---
diff --git a/content/book/fa/v2/ch00/_git_send_email.html b/content/book/fa/v2/ch00/_git_send_email.html
new file mode 100644
index 0000000000..f7d39eb12d
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_send_email.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Email#_git_send_email"
+---
diff --git a/content/book/fa/v2/ch00/_git_shortlog.html b/content/book/fa/v2/ch00/_git_shortlog.html
new file mode 100644
index 0000000000..facf903f2a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_shortlog.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Inspection-and-Comparison#_git_shortlog"
+---
diff --git a/content/book/fa/v2/ch00/_git_show.html b/content/book/fa/v2/ch00/_git_show.html
new file mode 100644
index 0000000000..53dcd9bf61
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_show.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Inspection-and-Comparison#_git_show"
+---
diff --git a/content/book/fa/v2/ch00/_git_stash.html b/content/book/fa/v2/ch00/_git_stash.html
new file mode 100644
index 0000000000..2be79088aa
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_stash.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Branching-and-Merging#_git_stash"
+---
diff --git a/content/book/fa/v2/ch00/_git_stashing.html b/content/book/fa/v2/ch00/_git_stashing.html
new file mode 100644
index 0000000000..3f962c76cb
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_stashing.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Stashing-and-Cleaning#_git_stashing"
+---
diff --git a/content/book/fa/v2/ch00/_git_status.html b/content/book/fa/v2/ch00/_git_status.html
new file mode 100644
index 0000000000..7270956bcb
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_status.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Basic-Snapshotting#_git_status"
+---
diff --git a/content/book/fa/v2/ch00/_git_submodule.html b/content/book/fa/v2/ch00/_git_submodule.html
new file mode 100644
index 0000000000..488cb45cf7
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_submodule.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Sharing-and-Updating-Projects#_git_submodule"
+---
diff --git a/content/book/fa/v2/ch00/_git_submodules.html b/content/book/fa/v2/ch00/_git_submodules.html
new file mode 100644
index 0000000000..05c325ab71
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_submodules.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Submodules#_git_submodules"
+---
diff --git a/content/book/fa/v2/ch00/_git_svn.html b/content/book/fa/v2/ch00/_git_svn.html
new file mode 100644
index 0000000000..3f3c293cb4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_svn.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_svn"
+---
diff --git a/content/book/fa/v2/ch00/_git_svn_2.html b/content/book/fa/v2/ch00/_git_svn_2.html
new file mode 100644
index 0000000000..30584a9a42
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_svn_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_svn_2"
+---
diff --git a/content/book/fa/v2/ch00/_git_svn_3.html b/content/book/fa/v2/ch00/_git_svn_3.html
new file mode 100644
index 0000000000..998e123a7a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_svn_3.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-External-Systems#_git_svn_3"
+---
diff --git a/content/book/fa/v2/ch00/_git_svn_summary.html b/content/book/fa/v2/ch00/_git_svn_summary.html
new file mode 100644
index 0000000000..5228fbea43
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_svn_summary.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_svn_summary"
+---
diff --git a/content/book/fa/v2/ch00/_git_tag.html b/content/book/fa/v2/ch00/_git_tag.html
new file mode 100644
index 0000000000..5a94807334
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_tag.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Branching-and-Merging#_git_tag"
+---
diff --git a/content/book/fa/v2/ch00/_git_tagging.html b/content/book/fa/v2/ch00/_git_tagging.html
new file mode 100644
index 0000000000..bb4f5bed7f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_tagging.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-برچسبگذاری#_git_tagging"
+---
diff --git a/content/book/fa/v2/ch00/_git_tfs.html b/content/book/fa/v2/ch00/_git_tfs.html
new file mode 100644
index 0000000000..4f0770ed1f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_tfs.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Migrating-to-Git#_git_tfs"
+---
diff --git a/content/book/fa/v2/ch00/_git_tfs_workflow.html b/content/book/fa/v2/ch00/_git_tfs_workflow.html
new file mode 100644
index 0000000000..74b446f0f9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_git_tfs_workflow.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_git_tfs_workflow"
+---
diff --git a/content/book/fa/v2/ch00/_github_flavored_markdown.html b/content/book/fa/v2/ch00/_github_flavored_markdown.html
new file mode 100644
index 0000000000..e9d2a6fa8e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_github_flavored_markdown.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_github_flavored_markdown"
+---
diff --git a/content/book/fa/v2/ch00/_github_for_macos_and_windows.html b/content/book/fa/v2/ch00/_github_for_macos_and_windows.html
new file mode 100644
index 0000000000..b5e3e4a2c1
--- /dev/null
+++ b/content/book/fa/v2/ch00/_github_for_macos_and_windows.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Graphical-Interfaces#_github_for_macos_and_windows"
+---
diff --git a/content/book/fa/v2/ch00/_gitk_and_git_gui.html b/content/book/fa/v2/ch00/_gitk_and_git_gui.html
new file mode 100644
index 0000000000..fc4dfca937
--- /dev/null
+++ b/content/book/fa/v2/ch00/_gitk_and_git_gui.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Graphical-Interfaces#_gitk_and_git_gui"
+---
diff --git a/content/book/fa/v2/ch00/_gitlab_groups_section.html b/content/book/fa/v2/ch00/_gitlab_groups_section.html
new file mode 100644
index 0000000000..348c22be1f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_gitlab_groups_section.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گیتلب#_gitlab_groups_section"
+---
diff --git a/content/book/fa/v2/ch00/_global_behavior.html b/content/book/fa/v2/ch00/_global_behavior.html
new file mode 100644
index 0000000000..0ea40119b5
--- /dev/null
+++ b/content/book/fa/v2/ch00/_global_behavior.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Environment-Variables#_global_behavior"
+---
diff --git a/content/book/fa/v2/ch00/_go_git.html b/content/book/fa/v2/ch00/_go_git.html
new file mode 100644
index 0000000000..086d977bf8
--- /dev/null
+++ b/content/book/fa/v2/ch00/_go_git.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-go-git#_go_git"
+---
diff --git a/content/book/fa/v2/ch00/_gpg_introduction.html b/content/book/fa/v2/ch00/_gpg_introduction.html
new file mode 100644
index 0000000000..f01c1e545f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_gpg_introduction.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Signing-Your-Work#_gpg_introduction"
+---
diff --git a/content/book/fa/v2/ch00/_graphical_interfaces.html b/content/book/fa/v2/ch00/_graphical_interfaces.html
new file mode 100644
index 0000000000..f32ff03c3d
--- /dev/null
+++ b/content/book/fa/v2/ch00/_graphical_interfaces.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Graphical-Interfaces#_graphical_interfaces"
+---
diff --git a/content/book/fa/v2/ch00/_help_autocorrect.html b/content/book/fa/v2/ch00/_help_autocorrect.html
new file mode 100644
index 0000000000..8bc2f1aec5
--- /dev/null
+++ b/content/book/fa/v2/ch00/_help_autocorrect.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_help_autocorrect"
+---
diff --git a/content/book/fa/v2/ch00/_hooks.html b/content/book/fa/v2/ch00/_hooks.html
new file mode 100644
index 0000000000..383f4062e9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_hooks.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_hooks"
+---
diff --git "a/content/book/fa/v2/ch00/_http_\330\272\333\214\330\261\331\207\331\210\330\264\331\205\331\206\330\257.html" "b/content/book/fa/v2/ch00/_http_\330\272\333\214\330\261\331\207\331\210\330\264\331\205\331\206\330\257.html"
new file mode 100644
index 0000000000..ef7f4ccd5f
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_http_\330\272\333\214\330\261\331\207\331\210\330\264\331\205\331\206\330\257.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#_http_غیرهوشمند"
+---
diff --git "a/content/book/fa/v2/ch00/_http_\331\207\331\210\330\264\331\205\331\206\330\257.html" "b/content/book/fa/v2/ch00/_http_\331\207\331\210\330\264\331\205\331\206\330\257.html"
new file mode 100644
index 0000000000..7a6263f89d
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_http_\331\207\331\210\330\264\331\205\331\206\330\257.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#_http_هوشمند"
+---
diff --git "a/content/book/fa/v2/ch00/_http_\331\207\331\210\330\264\331\205\331\206\330\257_2.html" "b/content/book/fa/v2/ch00/_http_\331\207\331\210\330\264\331\205\331\206\330\257_2.html"
new file mode 100644
index 0000000000..d5c0ce838d
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_http_\331\207\331\210\330\264\331\205\331\206\330\257_2.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-HTTP-هوشمند#_http_هوشمند_2"
+---
diff --git a/content/book/fa/v2/ch00/_https.html b/content/book/fa/v2/ch00/_https.html
new file mode 100644
index 0000000000..22cff86326
--- /dev/null
+++ b/content/book/fa/v2/ch00/_https.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Transfer-Protocols#_https"
+---
diff --git a/content/book/fa/v2/ch00/_https_2.html b/content/book/fa/v2/ch00/_https_2.html
new file mode 100644
index 0000000000..48252a2208
--- /dev/null
+++ b/content/book/fa/v2/ch00/_https_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Transfer-Protocols#_https_2"
+---
diff --git a/content/book/fa/v2/ch00/_identifying_binary_files.html b/content/book/fa/v2/ch00/_identifying_binary_files.html
new file mode 100644
index 0000000000..ce067e8e99
--- /dev/null
+++ b/content/book/fa/v2/ch00/_identifying_binary_files.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Attributes#_identifying_binary_files"
+---
diff --git a/content/book/fa/v2/ch00/_ignore_what_is_ignored_with_bzrignore.html b/content/book/fa/v2/ch00/_ignore_what_is_ignored_with_bzrignore.html
new file mode 100644
index 0000000000..e7d1665455
--- /dev/null
+++ b/content/book/fa/v2/ch00/_ignore_what_is_ignored_with_bzrignore.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_ignore_what_is_ignored_with_bzrignore"
+---
diff --git a/content/book/fa/v2/ch00/_ignoring.html b/content/book/fa/v2/ch00/_ignoring.html
new file mode 100644
index 0000000000..d56d1e7931
--- /dev/null
+++ b/content/book/fa/v2/ch00/_ignoring.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-ثبت-تغییرات-در-مخزن#_ignoring"
+---
diff --git a/content/book/fa/v2/ch00/_ignoring_the_files_that_were_ignored_with_bzrignore.html b/content/book/fa/v2/ch00/_ignoring_the_files_that_were_ignored_with_bzrignore.html
new file mode 100644
index 0000000000..1c9234c10d
--- /dev/null
+++ b/content/book/fa/v2/ch00/_ignoring_the_files_that_were_ignored_with_bzrignore.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Migrating-to-Git#_ignoring_the_files_that_were_ignored_with_bzrignore"
+---
diff --git a/content/book/fa/v2/ch00/_ignoring_what_subversion_ignores.html b/content/book/fa/v2/ch00/_ignoring_what_subversion_ignores.html
new file mode 100644
index 0000000000..56c0098409
--- /dev/null
+++ b/content/book/fa/v2/ch00/_ignoring_what_subversion_ignores.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_ignoring_what_subversion_ignores"
+---
diff --git a/content/book/fa/v2/ch00/_ignoring_whitespace.html b/content/book/fa/v2/ch00/_ignoring_whitespace.html
new file mode 100644
index 0000000000..c94e3bd690
--- /dev/null
+++ b/content/book/fa/v2/ch00/_ignoring_whitespace.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Advanced-Merging#_ignoring_whitespace"
+---
diff --git a/content/book/fa/v2/ch00/_images.html b/content/book/fa/v2/ch00/_images.html
new file mode 100644
index 0000000000..86f3fb3f55
--- /dev/null
+++ b/content/book/fa/v2/ch00/_images.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_images"
+---
diff --git a/content/book/fa/v2/ch00/_inspecting_remote.html b/content/book/fa/v2/ch00/_inspecting_remote.html
new file mode 100644
index 0000000000..e5e9014b3e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_inspecting_remote.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-کار-با-ریموتها#_inspecting_remote"
+---
diff --git a/content/book/fa/v2/ch00/_inspection_and_comparison.html b/content/book/fa/v2/ch00/_inspection_and_comparison.html
new file mode 100644
index 0000000000..a904c1365b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_inspection_and_comparison.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Inspection-and-Comparison#_inspection_and_comparison"
+---
diff --git a/content/book/fa/v2/ch00/_installation.html b/content/book/fa/v2/ch00/_installation.html
new file mode 100644
index 0000000000..3e1b637872
--- /dev/null
+++ b/content/book/fa/v2/ch00/_installation.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Graphical-Interfaces#_installation"
+---
diff --git a/content/book/fa/v2/ch00/_installation_2.html b/content/book/fa/v2/ch00/_installation_2.html
new file mode 100644
index 0000000000..16c680bfcb
--- /dev/null
+++ b/content/book/fa/v2/ch00/_installation_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Git-in-PowerShell#_installation_2"
+---
diff --git a/content/book/fa/v2/ch00/_installing_a_hook.html b/content/book/fa/v2/ch00/_installing_a_hook.html
new file mode 100644
index 0000000000..a1e50de5c6
--- /dev/null
+++ b/content/book/fa/v2/ch00/_installing_a_hook.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Hooks#_installing_a_hook"
+---
diff --git a/content/book/fa/v2/ch00/_integration_manager.html b/content/book/fa/v2/ch00/_integration_manager.html
new file mode 100644
index 0000000000..0b0deae228
--- /dev/null
+++ b/content/book/fa/v2/ch00/_integration_manager.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-روندهای-کاری-توزیعشده#_integration_manager"
+---
diff --git a/content/book/fa/v2/ch00/_interactive_staging.html b/content/book/fa/v2/ch00/_interactive_staging.html
new file mode 100644
index 0000000000..85949f13e1
--- /dev/null
+++ b/content/book/fa/v2/ch00/_interactive_staging.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Interactive-Staging#_interactive_staging"
+---
diff --git a/content/book/fa/v2/ch00/_issues_with_submodules.html b/content/book/fa/v2/ch00/_issues_with_submodules.html
new file mode 100644
index 0000000000..305e8cb373
--- /dev/null
+++ b/content/book/fa/v2/ch00/_issues_with_submodules.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Submodules#_issues_with_submodules"
+---
diff --git a/content/book/fa/v2/ch00/_iterating_on_a_pull_request.html b/content/book/fa/v2/ch00/_iterating_on_a_pull_request.html
new file mode 100644
index 0000000000..8c92cbce22
--- /dev/null
+++ b/content/book/fa/v2/ch00/_iterating_on_a_pull_request.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_iterating_on_a_pull_request"
+---
diff --git a/content/book/fa/v2/ch00/_jgit.html b/content/book/fa/v2/ch00/_jgit.html
new file mode 100644
index 0000000000..deb5be8c4e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_jgit.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-JGit#_jgit"
+---
diff --git a/content/book/fa/v2/ch00/_keeping_up_with_upstream.html b/content/book/fa/v2/ch00/_keeping_up_with_upstream.html
new file mode 100644
index 0000000000..006aea99d0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_keeping_up_with_upstream.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_keeping_up_with_upstream"
+---
diff --git a/content/book/fa/v2/ch00/_keyword_expansion.html b/content/book/fa/v2/ch00/_keyword_expansion.html
new file mode 100644
index 0000000000..20e270ae9e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_keyword_expansion.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Attributes#_keyword_expansion"
+---
diff --git a/content/book/fa/v2/ch00/_libgit2.html b/content/book/fa/v2/ch00/_libgit2.html
new file mode 100644
index 0000000000..89341aa0c0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_libgit2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-Libgit2#_libgit2"
+---
diff --git a/content/book/fa/v2/ch00/_libgit2_bindings.html b/content/book/fa/v2/ch00/_libgit2_bindings.html
new file mode 100644
index 0000000000..d734a11012
--- /dev/null
+++ b/content/book/fa/v2/ch00/_libgit2_bindings.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-Libgit2#_libgit2_bindings"
+---
diff --git a/content/book/fa/v2/ch00/_libgit2sharp.html b/content/book/fa/v2/ch00/_libgit2sharp.html
new file mode 100644
index 0000000000..e7cc2ddb09
--- /dev/null
+++ b/content/book/fa/v2/ch00/_libgit2sharp.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-Libgit2#_libgit2sharp"
+---
diff --git a/content/book/fa/v2/ch00/_line_log_search.html b/content/book/fa/v2/ch00/_line_log_search.html
new file mode 100644
index 0000000000..7bec447285
--- /dev/null
+++ b/content/book/fa/v2/ch00/_line_log_search.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Searching#_line_log_search"
+---
diff --git a/content/book/fa/v2/ch00/_maintaining_gh_project.html b/content/book/fa/v2/ch00/_maintaining_gh_project.html
new file mode 100644
index 0000000000..a2ef9d2e88
--- /dev/null
+++ b/content/book/fa/v2/ch00/_maintaining_gh_project.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_maintaining_gh_project"
+---
diff --git a/content/book/fa/v2/ch00/_maintenance_and_data_recovery.html b/content/book/fa/v2/ch00/_maintenance_and_data_recovery.html
new file mode 100644
index 0000000000..8b8d589b82
--- /dev/null
+++ b/content/book/fa/v2/ch00/_maintenance_and_data_recovery.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Maintenance-and-Data-Recovery#_maintenance_and_data_recovery"
+---
diff --git a/content/book/fa/v2/ch00/_making_a_subdirectory_the_new_root.html b/content/book/fa/v2/ch00/_making_a_subdirectory_the_new_root.html
new file mode 100644
index 0000000000..04d16afda4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_making_a_subdirectory_the_new_root.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Rewriting-History#_making_a_subdirectory_the_new_root"
+---
diff --git a/content/book/fa/v2/ch00/_managing_pull_requests.html b/content/book/fa/v2/ch00/_managing_pull_requests.html
new file mode 100644
index 0000000000..b7f35d6a58
--- /dev/null
+++ b/content/book/fa/v2/ch00/_managing_pull_requests.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_managing_pull_requests"
+---
diff --git a/content/book/fa/v2/ch00/_manual_remerge.html b/content/book/fa/v2/ch00/_manual_remerge.html
new file mode 100644
index 0000000000..e167908dc0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_manual_remerge.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Advanced-Merging#_manual_remerge"
+---
diff --git a/content/book/fa/v2/ch00/_md_code.html b/content/book/fa/v2/ch00/_md_code.html
new file mode 100644
index 0000000000..8f53f0329a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_md_code.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_md_code"
+---
diff --git a/content/book/fa/v2/ch00/_md_drag.html b/content/book/fa/v2/ch00/_md_drag.html
new file mode 100644
index 0000000000..a5acf50e6a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_md_drag.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_md_drag"
+---
diff --git a/content/book/fa/v2/ch00/_md_emoji.html b/content/book/fa/v2/ch00/_md_emoji.html
new file mode 100644
index 0000000000..45afea06d3
--- /dev/null
+++ b/content/book/fa/v2/ch00/_md_emoji.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_md_emoji"
+---
diff --git a/content/book/fa/v2/ch00/_md_emoji_auto.html b/content/book/fa/v2/ch00/_md_emoji_auto.html
new file mode 100644
index 0000000000..d36ea83436
--- /dev/null
+++ b/content/book/fa/v2/ch00/_md_emoji_auto.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_md_emoji_auto"
+---
diff --git a/content/book/fa/v2/ch00/_md_quote.html b/content/book/fa/v2/ch00/_md_quote.html
new file mode 100644
index 0000000000..67fb87a117
--- /dev/null
+++ b/content/book/fa/v2/ch00/_md_quote.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_md_quote"
+---
diff --git a/content/book/fa/v2/ch00/_mentions_and_notifications.html b/content/book/fa/v2/ch00/_mentions_and_notifications.html
new file mode 100644
index 0000000000..e723707598
--- /dev/null
+++ b/content/book/fa/v2/ch00/_mentions_and_notifications.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_mentions_and_notifications"
+---
diff --git a/content/book/fa/v2/ch00/_mercurial.html b/content/book/fa/v2/ch00/_mercurial.html
new file mode 100644
index 0000000000..033051df54
--- /dev/null
+++ b/content/book/fa/v2/ch00/_mercurial.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Migrating-to-Git#_mercurial"
+---
diff --git a/content/book/fa/v2/ch00/_mercurial_summary.html b/content/book/fa/v2/ch00/_mercurial_summary.html
new file mode 100644
index 0000000000..43c19abb6a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_mercurial_summary.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_mercurial_summary"
+---
diff --git a/content/book/fa/v2/ch00/_merge_button.html b/content/book/fa/v2/ch00/_merge_button.html
new file mode 100644
index 0000000000..d2cffca72b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_merge_button.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_merge_button"
+---
diff --git a/content/book/fa/v2/ch00/_merge_conflicts.html b/content/book/fa/v2/ch00/_merge_conflicts.html
new file mode 100644
index 0000000000..92674b0f66
--- /dev/null
+++ b/content/book/fa/v2/ch00/_merge_conflicts.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Advanced-Merging#_merge_conflicts"
+---
diff --git a/content/book/fa/v2/ch00/_merge_log.html b/content/book/fa/v2/ch00/_merge_log.html
new file mode 100644
index 0000000000..bf3c624bd6
--- /dev/null
+++ b/content/book/fa/v2/ch00/_merge_log.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Advanced-Merging#_merge_log"
+---
diff --git a/content/book/fa/v2/ch00/_merge_rebase_work.html b/content/book/fa/v2/ch00/_merge_rebase_work.html
new file mode 100644
index 0000000000..802e41292e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_merge_rebase_work.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-ریبیسکردن#_merge_rebase_work"
+---
diff --git a/content/book/fa/v2/ch00/_merge_strategies.html b/content/book/fa/v2/ch00/_merge_strategies.html
new file mode 100644
index 0000000000..2c5dc18af9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_merge_strategies.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Attributes#_merge_strategies"
+---
diff --git a/content/book/fa/v2/ch00/_merging_submodule_changes.html b/content/book/fa/v2/ch00/_merging_submodule_changes.html
new file mode 100644
index 0000000000..a4d920e924
--- /dev/null
+++ b/content/book/fa/v2/ch00/_merging_submodule_changes.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Submodules#_merging_submodule_changes"
+---
diff --git a/content/book/fa/v2/ch00/_migrating.html b/content/book/fa/v2/ch00/_migrating.html
new file mode 100644
index 0000000000..1bd8d2c98f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_migrating.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Migrating-to-Git#_migrating"
+---
diff --git a/content/book/fa/v2/ch00/_miscellaneous.html b/content/book/fa/v2/ch00/_miscellaneous.html
new file mode 100644
index 0000000000..57cb6a156a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_miscellaneous.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Environment-Variables#_miscellaneous"
+---
diff --git a/content/book/fa/v2/ch00/_multiple_points.html b/content/book/fa/v2/ch00/_multiple_points.html
new file mode 100644
index 0000000000..64aab5f9c4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_multiple_points.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Revision-Selection#_multiple_points"
+---
diff --git a/content/book/fa/v2/ch00/_networking.html b/content/book/fa/v2/ch00/_networking.html
new file mode 100644
index 0000000000..341e123659
--- /dev/null
+++ b/content/book/fa/v2/ch00/_networking.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Environment-Variables#_networking"
+---
diff --git a/content/book/fa/v2/ch00/_new_repo_dropdown.html b/content/book/fa/v2/ch00/_new_repo_dropdown.html
new file mode 100644
index 0000000000..23c6d936f6
--- /dev/null
+++ b/content/book/fa/v2/ch00/_new_repo_dropdown.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_new_repo_dropdown"
+---
diff --git a/content/book/fa/v2/ch00/_not_center.html b/content/book/fa/v2/ch00/_not_center.html
new file mode 100644
index 0000000000..4856f8ad4a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_not_center.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_not_center"
+---
diff --git a/content/book/fa/v2/ch00/_object_storage.html b/content/book/fa/v2/ch00/_object_storage.html
new file mode 100644
index 0000000000..58b43fe394
--- /dev/null
+++ b/content/book/fa/v2/ch00/_object_storage.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Git-Objects#_object_storage"
+---
diff --git a/content/book/fa/v2/ch00/_objective_git.html b/content/book/fa/v2/ch00/_objective_git.html
new file mode 100644
index 0000000000..c092b06bd2
--- /dev/null
+++ b/content/book/fa/v2/ch00/_objective_git.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-Libgit2#_objective_git"
+---
diff --git a/content/book/fa/v2/ch00/_objects.html b/content/book/fa/v2/ch00/_objects.html
new file mode 100644
index 0000000000..47812a2bca
--- /dev/null
+++ b/content/book/fa/v2/ch00/_objects.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Git-Objects#_objects"
+---
diff --git a/content/book/fa/v2/ch00/_octokit.html b/content/book/fa/v2/ch00/_octokit.html
new file mode 100644
index 0000000000..e77943d11b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_octokit.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_octokit"
+---
diff --git a/content/book/fa/v2/ch00/_org_page.html b/content/book/fa/v2/ch00/_org_page.html
new file mode 100644
index 0000000000..1a790bdb9c
--- /dev/null
+++ b/content/book/fa/v2/ch00/_org_page.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Managing-an-organization#_org_page"
+---
diff --git a/content/book/fa/v2/ch00/_organization_basics.html b/content/book/fa/v2/ch00/_organization_basics.html
new file mode 100644
index 0000000000..68232a98fe
--- /dev/null
+++ b/content/book/fa/v2/ch00/_organization_basics.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Managing-an-organization#_organization_basics"
+---
diff --git a/content/book/fa/v2/ch00/_other_client_hooks.html b/content/book/fa/v2/ch00/_other_client_hooks.html
new file mode 100644
index 0000000000..f772cebaa9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_other_client_hooks.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Hooks#_other_client_hooks"
+---
diff --git a/content/book/fa/v2/ch00/_other_guis.html b/content/book/fa/v2/ch00/_other_guis.html
new file mode 100644
index 0000000000..ce4f3484ed
--- /dev/null
+++ b/content/book/fa/v2/ch00/_other_guis.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Graphical-Interfaces#_other_guis"
+---
diff --git a/content/book/fa/v2/ch00/_other_types_of_merges.html b/content/book/fa/v2/ch00/_other_types_of_merges.html
new file mode 100644
index 0000000000..6b10c0f41b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_other_types_of_merges.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Advanced-Merging#_other_types_of_merges"
+---
diff --git a/content/book/fa/v2/ch00/_our_or_theirs_preference.html b/content/book/fa/v2/ch00/_our_or_theirs_preference.html
new file mode 100644
index 0000000000..75ca98d888
--- /dev/null
+++ b/content/book/fa/v2/ch00/_our_or_theirs_preference.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Advanced-Merging#_our_or_theirs_preference"
+---
diff --git a/content/book/fa/v2/ch00/_p4_git_fusion.html b/content/book/fa/v2/ch00/_p4_git_fusion.html
new file mode 100644
index 0000000000..bf662886c9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_p4_git_fusion.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_p4_git_fusion"
+---
diff --git a/content/book/fa/v2/ch00/_packfiles.html b/content/book/fa/v2/ch00/_packfiles.html
new file mode 100644
index 0000000000..eea4e3e5d9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_packfiles.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Packfiles#_packfiles"
+---
diff --git a/content/book/fa/v2/ch00/_patches_from_email.html b/content/book/fa/v2/ch00/_patches_from_email.html
new file mode 100644
index 0000000000..abcb1d0cba
--- /dev/null
+++ b/content/book/fa/v2/ch00/_patches_from_email.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_patches_from_email"
+---
diff --git a/content/book/fa/v2/ch00/_patching.html b/content/book/fa/v2/ch00/_patching.html
new file mode 100644
index 0000000000..b4b9e45348
--- /dev/null
+++ b/content/book/fa/v2/ch00/_patching.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Patching#_patching"
+---
diff --git a/content/book/fa/v2/ch00/_pathspecs.html b/content/book/fa/v2/ch00/_pathspecs.html
new file mode 100644
index 0000000000..f859b790e4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pathspecs.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Environment-Variables#_pathspecs"
+---
diff --git a/content/book/fa/v2/ch00/_perforce_git_fusion.html b/content/book/fa/v2/ch00/_perforce_git_fusion.html
new file mode 100644
index 0000000000..c29e18b61b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_perforce_git_fusion.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Migrating-to-Git#_perforce_git_fusion"
+---
diff --git a/content/book/fa/v2/ch00/_perforce_import.html b/content/book/fa/v2/ch00/_perforce_import.html
new file mode 100644
index 0000000000..acb235ed18
--- /dev/null
+++ b/content/book/fa/v2/ch00/_perforce_import.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Migrating-to-Git#_perforce_import"
+---
diff --git a/content/book/fa/v2/ch00/_personal_avatar.html b/content/book/fa/v2/ch00/_personal_avatar.html
new file mode 100644
index 0000000000..8d9ee17fc0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_personal_avatar.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Account-Setup-and-Configuration#_personal_avatar"
+---
diff --git a/content/book/fa/v2/ch00/_plumbing.html b/content/book/fa/v2/ch00/_plumbing.html
new file mode 100644
index 0000000000..9409486d0a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_plumbing.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-JGit#_plumbing"
+---
diff --git a/content/book/fa/v2/ch00/_plumbing_commands.html b/content/book/fa/v2/ch00/_plumbing_commands.html
new file mode 100644
index 0000000000..be09233ed2
--- /dev/null
+++ b/content/book/fa/v2/ch00/_plumbing_commands.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Plumbing-Commands#_plumbing_commands"
+---
diff --git a/content/book/fa/v2/ch00/_plumbing_porcelain.html b/content/book/fa/v2/ch00/_plumbing_porcelain.html
new file mode 100644
index 0000000000..f97480f0e2
--- /dev/null
+++ b/content/book/fa/v2/ch00/_plumbing_porcelain.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Plumbing-and-Porcelain#_plumbing_porcelain"
+---
diff --git a/content/book/fa/v2/ch00/_porcelain.html b/content/book/fa/v2/ch00/_porcelain.html
new file mode 100644
index 0000000000..1e4f8eb3b4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_porcelain.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-JGit#_porcelain"
+---
diff --git a/content/book/fa/v2/ch00/_post_receive.html b/content/book/fa/v2/ch00/_post_receive.html
new file mode 100644
index 0000000000..ae71266368
--- /dev/null
+++ b/content/book/fa/v2/ch00/_post_receive.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Hooks#_post_receive"
+---
diff --git a/content/book/fa/v2/ch00/_powershell_gallery.html b/content/book/fa/v2/ch00/_powershell_gallery.html
new file mode 100644
index 0000000000..9a36e502e6
--- /dev/null
+++ b/content/book/fa/v2/ch00/_powershell_gallery.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Git-in-PowerShell#_powershell_gallery"
+---
diff --git a/content/book/fa/v2/ch00/_pr_closed.html b/content/book/fa/v2/ch00/_pr_closed.html
new file mode 100644
index 0000000000..5860ca6edb
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pr_closed.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_pr_closed"
+---
diff --git a/content/book/fa/v2/ch00/_pr_discussion.html b/content/book/fa/v2/ch00/_pr_discussion.html
new file mode 100644
index 0000000000..c60bd01027
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pr_discussion.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_pr_discussion"
+---
diff --git a/content/book/fa/v2/ch00/_pr_fail.html b/content/book/fa/v2/ch00/_pr_fail.html
new file mode 100644
index 0000000000..a6b2af9307
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pr_fail.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_pr_fail"
+---
diff --git a/content/book/fa/v2/ch00/_pr_final.html b/content/book/fa/v2/ch00/_pr_final.html
new file mode 100644
index 0000000000..4eeb34ff06
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pr_final.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_pr_final"
+---
diff --git a/content/book/fa/v2/ch00/_pr_merge_fix.html b/content/book/fa/v2/ch00/_pr_merge_fix.html
new file mode 100644
index 0000000000..ca80b163c9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pr_merge_fix.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_pr_merge_fix"
+---
diff --git a/content/book/fa/v2/ch00/_pr_references.html b/content/book/fa/v2/ch00/_pr_references.html
new file mode 100644
index 0000000000..29f0378b60
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pr_references.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_pr_references"
+---
diff --git a/content/book/fa/v2/ch00/_pr_references_render.html b/content/book/fa/v2/ch00/_pr_references_render.html
new file mode 100644
index 0000000000..eb78cc9335
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pr_references_render.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_pr_references_render"
+---
diff --git a/content/book/fa/v2/ch00/_pr_refs.html b/content/book/fa/v2/ch00/_pr_refs.html
new file mode 100644
index 0000000000..6d48a647dd
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pr_refs.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_pr_refs"
+---
diff --git a/content/book/fa/v2/ch00/_pr_targets.html b/content/book/fa/v2/ch00/_pr_targets.html
new file mode 100644
index 0000000000..6db7dbfbec
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pr_targets.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_pr_targets"
+---
diff --git a/content/book/fa/v2/ch00/_pre_merge_rebase_work.html b/content/book/fa/v2/ch00/_pre_merge_rebase_work.html
new file mode 100644
index 0000000000..c3832367ba
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pre_merge_rebase_work.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-ریبیسکردن#_pre_merge_rebase_work"
+---
diff --git a/content/book/fa/v2/ch00/_pre_receive.html b/content/book/fa/v2/ch00/_pre_receive.html
new file mode 100644
index 0000000000..de838c719e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pre_receive.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Hooks#_pre_receive"
+---
diff --git a/content/book/fa/v2/ch00/_preparing_release.html b/content/book/fa/v2/ch00/_preparing_release.html
new file mode 100644
index 0000000000..96c1d3e943
--- /dev/null
+++ b/content/book/fa/v2/ch00/_preparing_release.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_preparing_release"
+---
diff --git a/content/book/fa/v2/ch00/_prerequisites_windows_only.html b/content/book/fa/v2/ch00/_prerequisites_windows_only.html
new file mode 100644
index 0000000000..1e4401e653
--- /dev/null
+++ b/content/book/fa/v2/ch00/_prerequisites_windows_only.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Git-in-PowerShell#_prerequisites_windows_only"
+---
diff --git a/content/book/fa/v2/ch00/_private_team.html b/content/book/fa/v2/ch00/_private_team.html
new file mode 100644
index 0000000000..7940e6f1d7
--- /dev/null
+++ b/content/book/fa/v2/ch00/_private_team.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-مشارکت-در-یک-پروژه#_private_team"
+---
diff --git a/content/book/fa/v2/ch00/_project_administration.html b/content/book/fa/v2/ch00/_project_administration.html
new file mode 100644
index 0000000000..75475abdc5
--- /dev/null
+++ b/content/book/fa/v2/ch00/_project_administration.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_project_administration"
+---
diff --git a/content/book/fa/v2/ch00/_project_over_email.html b/content/book/fa/v2/ch00/_project_over_email.html
new file mode 100644
index 0000000000..c42837d016
--- /dev/null
+++ b/content/book/fa/v2/ch00/_project_over_email.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-مشارکت-در-یک-پروژه#_project_over_email"
+---
diff --git a/content/book/fa/v2/ch00/_project_with_a_single_branch.html b/content/book/fa/v2/ch00/_project_with_a_single_branch.html
new file mode 100644
index 0000000000..a0bf85805b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_project_with_a_single_branch.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Migrating-to-Git#_project_with_a_single_branch"
+---
diff --git a/content/book/fa/v2/ch00/_protocols_summary.html b/content/book/fa/v2/ch00/_protocols_summary.html
new file mode 100644
index 0000000000..ec9598deb3
--- /dev/null
+++ b/content/book/fa/v2/ch00/_protocols_summary.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Transfer-Protocols#_protocols_summary"
+---
diff --git a/content/book/fa/v2/ch00/_public_project.html b/content/book/fa/v2/ch00/_public_project.html
new file mode 100644
index 0000000000..e62708336a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_public_project.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-مشارکت-در-یک-پروژه#_public_project"
+---
diff --git a/content/book/fa/v2/ch00/_publishing_submodules.html b/content/book/fa/v2/ch00/_publishing_submodules.html
new file mode 100644
index 0000000000..785e61e640
--- /dev/null
+++ b/content/book/fa/v2/ch00/_publishing_submodules.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Submodules#_publishing_submodules"
+---
diff --git a/content/book/fa/v2/ch00/_pull_requests_as_patches.html b/content/book/fa/v2/ch00/_pull_requests_as_patches.html
new file mode 100644
index 0000000000..3ee8c26499
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pull_requests_as_patches.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_pull_requests_as_patches"
+---
diff --git a/content/book/fa/v2/ch00/_pull_requests_on_pull_requests.html b/content/book/fa/v2/ch00/_pull_requests_on_pull_requests.html
new file mode 100644
index 0000000000..fbd3e98c8f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pull_requests_on_pull_requests.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_pull_requests_on_pull_requests"
+---
diff --git a/content/book/fa/v2/ch00/_pulling_in_new_changes.html b/content/book/fa/v2/ch00/_pulling_in_new_changes.html
new file mode 100644
index 0000000000..aca189c0dc
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pulling_in_new_changes.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_pulling_in_new_changes"
+---
diff --git a/content/book/fa/v2/ch00/_pulling_in_upstream_changes_from_the_submodule_remote.html b/content/book/fa/v2/ch00/_pulling_in_upstream_changes_from_the_submodule_remote.html
new file mode 100644
index 0000000000..fce9dafebd
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pulling_in_upstream_changes_from_the_submodule_remote.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Submodules#_pulling_in_upstream_changes_from_the_submodule_remote"
+---
diff --git a/content/book/fa/v2/ch00/_pulling_upstream_changes_from_the_project_remote.html b/content/book/fa/v2/ch00/_pulling_upstream_changes_from_the_project_remote.html
new file mode 100644
index 0000000000..8a23766daa
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pulling_upstream_changes_from_the_project_remote.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Submodules#_pulling_upstream_changes_from_the_project_remote"
+---
diff --git a/content/book/fa/v2/ch00/_push_your_work_on_the_remote_repository.html b/content/book/fa/v2/ch00/_push_your_work_on_the_remote_repository.html
new file mode 100644
index 0000000000..2549c995fb
--- /dev/null
+++ b/content/book/fa/v2/ch00/_push_your_work_on_the_remote_repository.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_push_your_work_on_the_remote_repository"
+---
diff --git a/content/book/fa/v2/ch00/_pushing_branches.html b/content/book/fa/v2/ch00/_pushing_branches.html
new file mode 100644
index 0000000000..a004dc8101
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pushing_branches.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-شاخههای-ریموت#_pushing_branches"
+---
diff --git a/content/book/fa/v2/ch00/_pushing_refspecs.html b/content/book/fa/v2/ch00/_pushing_refspecs.html
new file mode 100644
index 0000000000..5d27187468
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pushing_refspecs.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-The-Refspec#_pushing_refspecs"
+---
diff --git a/content/book/fa/v2/ch00/_pushing_remotes.html b/content/book/fa/v2/ch00/_pushing_remotes.html
new file mode 100644
index 0000000000..6d44de3d75
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pushing_remotes.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-کار-با-ریموتها#_pushing_remotes"
+---
diff --git a/content/book/fa/v2/ch00/_pygit2.html b/content/book/fa/v2/ch00/_pygit2.html
new file mode 100644
index 0000000000..7177578711
--- /dev/null
+++ b/content/book/fa/v2/ch00/_pygit2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-B:-Embedding-Git-in-your-Applications-Libgit2#_pygit2"
+---
diff --git a/content/book/fa/v2/ch00/_quoting.html b/content/book/fa/v2/ch00/_quoting.html
new file mode 100644
index 0000000000..55cd231405
--- /dev/null
+++ b/content/book/fa/v2/ch00/_quoting.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_quoting"
+---
diff --git a/content/book/fa/v2/ch00/_readme.html b/content/book/fa/v2/ch00/_readme.html
new file mode 100644
index 0000000000..b93b45ab51
--- /dev/null
+++ b/content/book/fa/v2/ch00/_readme.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_readme"
+---
diff --git a/content/book/fa/v2/ch00/_rebase_cherry_pick.html b/content/book/fa/v2/ch00/_rebase_cherry_pick.html
new file mode 100644
index 0000000000..18a4094c84
--- /dev/null
+++ b/content/book/fa/v2/ch00/_rebase_cherry_pick.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_rebase_cherry_pick"
+---
diff --git a/content/book/fa/v2/ch00/_rebase_peril.html b/content/book/fa/v2/ch00/_rebase_peril.html
new file mode 100644
index 0000000000..f0141fa1aa
--- /dev/null
+++ b/content/book/fa/v2/ch00/_rebase_peril.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-ریبیسکردن#_rebase_peril"
+---
diff --git a/content/book/fa/v2/ch00/_rebase_rebase.html b/content/book/fa/v2/ch00/_rebase_rebase.html
new file mode 100644
index 0000000000..0f53c331e4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_rebase_rebase.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-ریبیسکردن#_rebase_rebase"
+---
diff --git a/content/book/fa/v2/ch00/_rebase_rebase_work.html b/content/book/fa/v2/ch00/_rebase_rebase_work.html
new file mode 100644
index 0000000000..ec674738bd
--- /dev/null
+++ b/content/book/fa/v2/ch00/_rebase_rebase_work.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-ریبیسکردن#_rebase_rebase_work"
+---
diff --git a/content/book/fa/v2/ch00/_rebasing.html b/content/book/fa/v2/ch00/_rebasing.html
new file mode 100644
index 0000000000..696dafb6e1
--- /dev/null
+++ b/content/book/fa/v2/ch00/_rebasing.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-ریبیسکردن#_rebasing"
+---
diff --git a/content/book/fa/v2/ch00/_recap.html b/content/book/fa/v2/ch00/_recap.html
new file mode 100644
index 0000000000..16810cb746
--- /dev/null
+++ b/content/book/fa/v2/ch00/_recap.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_recap"
+---
diff --git a/content/book/fa/v2/ch00/_receive_denydeletes.html b/content/book/fa/v2/ch00/_receive_denydeletes.html
new file mode 100644
index 0000000000..a892ff3342
--- /dev/null
+++ b/content/book/fa/v2/ch00/_receive_denydeletes.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_receive_denydeletes"
+---
diff --git a/content/book/fa/v2/ch00/_receive_denynonfastforwards.html b/content/book/fa/v2/ch00/_receive_denynonfastforwards.html
new file mode 100644
index 0000000000..68f2ac42e0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_receive_denynonfastforwards.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_receive_denynonfastforwards"
+---
diff --git a/content/book/fa/v2/ch00/_receive_fsckobjects.html b/content/book/fa/v2/ch00/_receive_fsckobjects.html
new file mode 100644
index 0000000000..faacb6ff36
--- /dev/null
+++ b/content/book/fa/v2/ch00/_receive_fsckobjects.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_receive_fsckobjects"
+---
diff --git a/content/book/fa/v2/ch00/_recommended_workflow.html b/content/book/fa/v2/ch00/_recommended_workflow.html
new file mode 100644
index 0000000000..d999d5dbb0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_recommended_workflow.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Graphical-Interfaces#_recommended_workflow"
+---
diff --git a/content/book/fa/v2/ch00/_references.html b/content/book/fa/v2/ch00/_references.html
new file mode 100644
index 0000000000..8565f81b60
--- /dev/null
+++ b/content/book/fa/v2/ch00/_references.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_references"
+---
diff --git a/content/book/fa/v2/ch00/_refspec.html b/content/book/fa/v2/ch00/_refspec.html
new file mode 100644
index 0000000000..59df972627
--- /dev/null
+++ b/content/book/fa/v2/ch00/_refspec.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-The-Refspec#_refspec"
+---
diff --git a/content/book/fa/v2/ch00/_remote_branches.html b/content/book/fa/v2/ch00/_remote_branches.html
new file mode 100644
index 0000000000..ebad51e4d2
--- /dev/null
+++ b/content/book/fa/v2/ch00/_remote_branches.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-شاخههای-ریموت#_remote_branches"
+---
diff --git a/content/book/fa/v2/ch00/_remote_repos.html b/content/book/fa/v2/ch00/_remote_repos.html
new file mode 100644
index 0000000000..9f4461e9ac
--- /dev/null
+++ b/content/book/fa/v2/ch00/_remote_repos.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-کار-با-ریموتها#_remote_repos"
+---
diff --git a/content/book/fa/v2/ch00/_remotes.html b/content/book/fa/v2/ch00/_remotes.html
new file mode 100644
index 0000000000..27168045be
--- /dev/null
+++ b/content/book/fa/v2/ch00/_remotes.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Git-References#_remotes"
+---
diff --git a/content/book/fa/v2/ch00/_removing_file_every_commit.html b/content/book/fa/v2/ch00/_removing_file_every_commit.html
new file mode 100644
index 0000000000..b54c466fd3
--- /dev/null
+++ b/content/book/fa/v2/ch00/_removing_file_every_commit.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Rewriting-History#_removing_file_every_commit"
+---
diff --git a/content/book/fa/v2/ch00/_removing_files.html b/content/book/fa/v2/ch00/_removing_files.html
new file mode 100644
index 0000000000..84079f7f7a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_removing_files.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-ثبت-تغییرات-در-مخزن#_removing_files"
+---
diff --git a/content/book/fa/v2/ch00/_removing_objects.html b/content/book/fa/v2/ch00/_removing_objects.html
new file mode 100644
index 0000000000..3cd19eb83d
--- /dev/null
+++ b/content/book/fa/v2/ch00/_removing_objects.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Maintenance-and-Data-Recovery#_removing_objects"
+---
diff --git a/content/book/fa/v2/ch00/_reordering_commits.html b/content/book/fa/v2/ch00/_reordering_commits.html
new file mode 100644
index 0000000000..7cd0aace35
--- /dev/null
+++ b/content/book/fa/v2/ch00/_reordering_commits.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Rewriting-History#_reordering_commits"
+---
diff --git a/content/book/fa/v2/ch00/_replace.html b/content/book/fa/v2/ch00/_replace.html
new file mode 100644
index 0000000000..6ae23b4a8e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_replace.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Replace#_replace"
+---
diff --git a/content/book/fa/v2/ch00/_repository_locations.html b/content/book/fa/v2/ch00/_repository_locations.html
new file mode 100644
index 0000000000..f0529ab7d4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_repository_locations.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Environment-Variables#_repository_locations"
+---
diff --git a/content/book/fa/v2/ch00/_reset_with_a_path.html b/content/book/fa/v2/ch00/_reset_with_a_path.html
new file mode 100644
index 0000000000..dc4a313f65
--- /dev/null
+++ b/content/book/fa/v2/ch00/_reset_with_a_path.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_reset_with_a_path"
+---
diff --git a/content/book/fa/v2/ch00/_reverse_commit.html b/content/book/fa/v2/ch00/_reverse_commit.html
new file mode 100644
index 0000000000..4060db8759
--- /dev/null
+++ b/content/book/fa/v2/ch00/_reverse_commit.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Advanced-Merging#_reverse_commit"
+---
diff --git a/content/book/fa/v2/ch00/_revision_selection.html b/content/book/fa/v2/ch00/_revision_selection.html
new file mode 100644
index 0000000000..a2af7a6989
--- /dev/null
+++ b/content/book/fa/v2/ch00/_revision_selection.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Revision-Selection#_revision_selection"
+---
diff --git a/content/book/fa/v2/ch00/_rewriting_history.html b/content/book/fa/v2/ch00/_rewriting_history.html
new file mode 100644
index 0000000000..18d62a1d5d
--- /dev/null
+++ b/content/book/fa/v2/ch00/_rewriting_history.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Rewriting-History#_rewriting_history"
+---
diff --git a/content/book/fa/v2/ch00/_scripting_github.html b/content/book/fa/v2/ch00/_scripting_github.html
new file mode 100644
index 0000000000..b8f1f357cd
--- /dev/null
+++ b/content/book/fa/v2/ch00/_scripting_github.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_scripting_github"
+---
diff --git a/content/book/fa/v2/ch00/_searching.html b/content/book/fa/v2/ch00/_searching.html
new file mode 100644
index 0000000000..226db00551
--- /dev/null
+++ b/content/book/fa/v2/ch00/_searching.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Searching#_searching"
+---
diff --git a/content/book/fa/v2/ch00/_sending_your_repository_to_the_server.html b/content/book/fa/v2/ch00/_sending_your_repository_to_the_server.html
new file mode 100644
index 0000000000..bac19cb7f4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_sending_your_repository_to_the_server.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Migrating-to-Git#_sending_your_repository_to_the_server"
+---
diff --git a/content/book/fa/v2/ch00/_server_configuration.html b/content/book/fa/v2/ch00/_server_configuration.html
new file mode 100644
index 0000000000..d9bea1b5f7
--- /dev/null
+++ b/content/book/fa/v2/ch00/_server_configuration.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_server_configuration"
+---
diff --git a/content/book/fa/v2/ch00/_server_side_hook.html b/content/book/fa/v2/ch00/_server_side_hook.html
new file mode 100644
index 0000000000..89f7909374
--- /dev/null
+++ b/content/book/fa/v2/ch00/_server_side_hook.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-An-Example-Git-Enforced-Policy#_server_side_hook"
+---
diff --git a/content/book/fa/v2/ch00/_server_side_hooks.html b/content/book/fa/v2/ch00/_server_side_hooks.html
new file mode 100644
index 0000000000..a80e566549
--- /dev/null
+++ b/content/book/fa/v2/ch00/_server_side_hooks.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Hooks#_server_side_hooks"
+---
diff --git a/content/book/fa/v2/ch00/_service_config.html b/content/book/fa/v2/ch00/_service_config.html
new file mode 100644
index 0000000000..8d7e1a8dfe
--- /dev/null
+++ b/content/book/fa/v2/ch00/_service_config.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_service_config"
+---
diff --git a/content/book/fa/v2/ch00/_services.html b/content/book/fa/v2/ch00/_services.html
new file mode 100644
index 0000000000..91635a4f3c
--- /dev/null
+++ b/content/book/fa/v2/ch00/_services.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_services"
+---
diff --git a/content/book/fa/v2/ch00/_services_and_hooks.html b/content/book/fa/v2/ch00/_services_and_hooks.html
new file mode 100644
index 0000000000..78feb82a41
--- /dev/null
+++ b/content/book/fa/v2/ch00/_services_and_hooks.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_services_and_hooks"
+---
diff --git a/content/book/fa/v2/ch00/_services_hooks.html b/content/book/fa/v2/ch00/_services_hooks.html
new file mode 100644
index 0000000000..6b502d49e8
--- /dev/null
+++ b/content/book/fa/v2/ch00/_services_hooks.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_services_hooks"
+---
diff --git a/content/book/fa/v2/ch00/_setting_up.html b/content/book/fa/v2/ch00/_setting_up.html
new file mode 100644
index 0000000000..fd6f18029e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_setting_up.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_setting_up"
+---
diff --git a/content/book/fa/v2/ch00/_setting_up_2.html b/content/book/fa/v2/ch00/_setting_up_2.html
new file mode 100644
index 0000000000..322d230fa8
--- /dev/null
+++ b/content/book/fa/v2/ch00/_setting_up_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_setting_up_2"
+---
diff --git a/content/book/fa/v2/ch00/_setting_up_3.html b/content/book/fa/v2/ch00/_setting_up_3.html
new file mode 100644
index 0000000000..c8b7c4a5a2
--- /dev/null
+++ b/content/book/fa/v2/ch00/_setting_up_3.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_setting_up_3"
+---
diff --git a/content/book/fa/v2/ch00/_setting_up_server.html b/content/book/fa/v2/ch00/_setting_up_server.html
new file mode 100644
index 0000000000..4afb3272cc
--- /dev/null
+++ b/content/book/fa/v2/ch00/_setting_up_server.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-نصب-و-راهاندازی-سرور#_setting_up_server"
+---
diff --git a/content/book/fa/v2/ch00/_setup_and_config.html b/content/book/fa/v2/ch00/_setup_and_config.html
new file mode 100644
index 0000000000..77c1a49fee
--- /dev/null
+++ b/content/book/fa/v2/ch00/_setup_and_config.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Setup-and-Config#_setup_and_config"
+---
diff --git a/content/book/fa/v2/ch00/_sharing_and_updating_projects.html b/content/book/fa/v2/ch00/_sharing_and_updating_projects.html
new file mode 100644
index 0000000000..6a3e283547
--- /dev/null
+++ b/content/book/fa/v2/ch00/_sharing_and_updating_projects.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-C:-Git-Commands-Sharing-and-Updating-Projects#_sharing_and_updating_projects"
+---
diff --git a/content/book/fa/v2/ch00/_sharing_tags.html b/content/book/fa/v2/ch00/_sharing_tags.html
new file mode 100644
index 0000000000..01c548c000
--- /dev/null
+++ b/content/book/fa/v2/ch00/_sharing_tags.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-برچسبگذاری#_sharing_tags"
+---
diff --git a/content/book/fa/v2/ch00/_short_sha_1.html b/content/book/fa/v2/ch00/_short_sha_1.html
new file mode 100644
index 0000000000..3133f810e7
--- /dev/null
+++ b/content/book/fa/v2/ch00/_short_sha_1.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Revision-Selection#_short_sha_1"
+---
diff --git a/content/book/fa/v2/ch00/_signing.html b/content/book/fa/v2/ch00/_signing.html
new file mode 100644
index 0000000000..1d665573e3
--- /dev/null
+++ b/content/book/fa/v2/ch00/_signing.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Signing-Your-Work#_signing"
+---
diff --git a/content/book/fa/v2/ch00/_signing_commits.html b/content/book/fa/v2/ch00/_signing_commits.html
new file mode 100644
index 0000000000..48d7e08a3b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_signing_commits.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Signing-Your-Work#_signing_commits"
+---
diff --git a/content/book/fa/v2/ch00/_signing_tags.html b/content/book/fa/v2/ch00/_signing_tags.html
new file mode 100644
index 0000000000..d96591cca0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_signing_tags.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Signing-Your-Work#_signing_tags"
+---
diff --git a/content/book/fa/v2/ch00/_single_revisions.html b/content/book/fa/v2/ch00/_single_revisions.html
new file mode 100644
index 0000000000..5c73b0b712
--- /dev/null
+++ b/content/book/fa/v2/ch00/_single_revisions.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Revision-Selection#_single_revisions"
+---
diff --git a/content/book/fa/v2/ch00/_special_files.html b/content/book/fa/v2/ch00/_special_files.html
new file mode 100644
index 0000000000..2a2fc2fa84
--- /dev/null
+++ b/content/book/fa/v2/ch00/_special_files.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_special_files"
+---
diff --git a/content/book/fa/v2/ch00/_splitting_a_commit.html b/content/book/fa/v2/ch00/_splitting_a_commit.html
new file mode 100644
index 0000000000..8e645c093b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_splitting_a_commit.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Rewriting-History#_splitting_a_commit"
+---
diff --git a/content/book/fa/v2/ch00/_squashing.html b/content/book/fa/v2/ch00/_squashing.html
new file mode 100644
index 0000000000..9b037dc1a3
--- /dev/null
+++ b/content/book/fa/v2/ch00/_squashing.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Rewriting-History#_squashing"
+---
diff --git a/content/book/fa/v2/ch00/_squashing_2.html b/content/book/fa/v2/ch00/_squashing_2.html
new file mode 100644
index 0000000000..ce4845b5b2
--- /dev/null
+++ b/content/book/fa/v2/ch00/_squashing_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_squashing_2"
+---
diff --git a/content/book/fa/v2/ch00/_ssh.html b/content/book/fa/v2/ch00/_ssh.html
new file mode 100644
index 0000000000..43b65b95b4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_ssh.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Transfer-Protocols#_ssh"
+---
diff --git a/content/book/fa/v2/ch00/_ssh_2.html b/content/book/fa/v2/ch00/_ssh_2.html
new file mode 100644
index 0000000000..dbd6e03848
--- /dev/null
+++ b/content/book/fa/v2/ch00/_ssh_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Transfer-Protocols#_ssh_2"
+---
diff --git a/content/book/fa/v2/ch00/_ssh_access.html b/content/book/fa/v2/ch00/_ssh_access.html
new file mode 100644
index 0000000000..e979e03b76
--- /dev/null
+++ b/content/book/fa/v2/ch00/_ssh_access.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Account-Setup-and-Configuration#_ssh_access"
+---
diff --git a/content/book/fa/v2/ch00/_staging_and_unstaging_files.html b/content/book/fa/v2/ch00/_staging_and_unstaging_files.html
new file mode 100644
index 0000000000..93a88581b5
--- /dev/null
+++ b/content/book/fa/v2/ch00/_staging_and_unstaging_files.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Interactive-Staging#_staging_and_unstaging_files"
+---
diff --git a/content/book/fa/v2/ch00/_staging_patches.html b/content/book/fa/v2/ch00/_staging_patches.html
new file mode 100644
index 0000000000..71932aa0d0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_staging_patches.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Interactive-Staging#_staging_patches"
+---
diff --git a/content/book/fa/v2/ch00/_starting_submodules.html b/content/book/fa/v2/ch00/_starting_submodules.html
new file mode 100644
index 0000000000..13f19d05ca
--- /dev/null
+++ b/content/book/fa/v2/ch00/_starting_submodules.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Submodules#_starting_submodules"
+---
diff --git a/content/book/fa/v2/ch00/_stashing_your_work.html b/content/book/fa/v2/ch00/_stashing_your_work.html
new file mode 100644
index 0000000000..9b14b15430
--- /dev/null
+++ b/content/book/fa/v2/ch00/_stashing_your_work.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Stashing-and-Cleaning#_stashing_your_work"
+---
diff --git a/content/book/fa/v2/ch00/_step_1_move_head.html b/content/book/fa/v2/ch00/_step_1_move_head.html
new file mode 100644
index 0000000000..6813e05872
--- /dev/null
+++ b/content/book/fa/v2/ch00/_step_1_move_head.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_step_1_move_head"
+---
diff --git a/content/book/fa/v2/ch00/_step_2_updating_the_index_mixed.html b/content/book/fa/v2/ch00/_step_2_updating_the_index_mixed.html
new file mode 100644
index 0000000000..aa285dbf72
--- /dev/null
+++ b/content/book/fa/v2/ch00/_step_2_updating_the_index_mixed.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_step_2_updating_the_index_mixed"
+---
diff --git a/content/book/fa/v2/ch00/_step_3_updating_the_working_directory_hard.html b/content/book/fa/v2/ch00/_step_3_updating_the_working_directory_hard.html
new file mode 100644
index 0000000000..820e21c6a4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_step_3_updating_the_working_directory_hard.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_step_3_updating_the_working_directory_hard"
+---
diff --git a/content/book/fa/v2/ch00/_submodule_foreach.html b/content/book/fa/v2/ch00/_submodule_foreach.html
new file mode 100644
index 0000000000..43ce6e9b24
--- /dev/null
+++ b/content/book/fa/v2/ch00/_submodule_foreach.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Submodules#_submodule_foreach"
+---
diff --git a/content/book/fa/v2/ch00/_submodule_tips.html b/content/book/fa/v2/ch00/_submodule_tips.html
new file mode 100644
index 0000000000..f041a941bb
--- /dev/null
+++ b/content/book/fa/v2/ch00/_submodule_tips.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Submodules#_submodule_tips"
+---
diff --git a/content/book/fa/v2/ch00/_subtree_merge.html b/content/book/fa/v2/ch00/_subtree_merge.html
new file mode 100644
index 0000000000..44f3d2f15e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_subtree_merge.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Advanced-Merging#_subtree_merge"
+---
diff --git a/content/book/fa/v2/ch00/_subversion.html b/content/book/fa/v2/ch00/_subversion.html
new file mode 100644
index 0000000000..17081d2d4c
--- /dev/null
+++ b/content/book/fa/v2/ch00/_subversion.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Migrating-to-Git#_subversion"
+---
diff --git a/content/book/fa/v2/ch00/_subversion_branching.html b/content/book/fa/v2/ch00/_subversion_branching.html
new file mode 100644
index 0000000000..c5f3b74f1e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_subversion_branching.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_subversion_branching"
+---
diff --git a/content/book/fa/v2/ch00/_subversion_commands.html b/content/book/fa/v2/ch00/_subversion_commands.html
new file mode 100644
index 0000000000..dce11f2bec
--- /dev/null
+++ b/content/book/fa/v2/ch00/_subversion_commands.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_subversion_commands"
+---
diff --git a/content/book/fa/v2/ch00/_summary.html b/content/book/fa/v2/ch00/_summary.html
new file mode 100644
index 0000000000..94e358e55d
--- /dev/null
+++ b/content/book/fa/v2/ch00/_summary.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Summary#_summary"
+---
diff --git a/content/book/fa/v2/ch00/_summary_2.html b/content/book/fa/v2/ch00/_summary_2.html
new file mode 100644
index 0000000000..3a636a7bb8
--- /dev/null
+++ b/content/book/fa/v2/ch00/_summary_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_summary_2"
+---
diff --git a/content/book/fa/v2/ch00/_summary_3.html b/content/book/fa/v2/ch00/_summary_3.html
new file mode 100644
index 0000000000..2244bfb743
--- /dev/null
+++ b/content/book/fa/v2/ch00/_summary_3.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Summary#_summary_3"
+---
diff --git a/content/book/fa/v2/ch00/_summary_4.html b/content/book/fa/v2/ch00/_summary_4.html
new file mode 100644
index 0000000000..9928e2966b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_summary_4.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Summary#_summary_4"
+---
diff --git a/content/book/fa/v2/ch00/_summary_5.html b/content/book/fa/v2/ch00/_summary_5.html
new file mode 100644
index 0000000000..60d408ea6d
--- /dev/null
+++ b/content/book/fa/v2/ch00/_summary_5.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_summary_5"
+---
diff --git a/content/book/fa/v2/ch00/_summary_6.html b/content/book/fa/v2/ch00/_summary_6.html
new file mode 100644
index 0000000000..5be6a68ee9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_summary_6.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Summary#_summary_6"
+---
diff --git a/content/book/fa/v2/ch00/_summary_7.html b/content/book/fa/v2/ch00/_summary_7.html
new file mode 100644
index 0000000000..fb52a5ef63
--- /dev/null
+++ b/content/book/fa/v2/ch00/_summary_7.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Summary#_summary_7"
+---
diff --git a/content/book/fa/v2/ch00/_summary_8.html b/content/book/fa/v2/ch00/_summary_8.html
new file mode 100644
index 0000000000..e7e35844c4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_summary_8.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Graphical-Interfaces#_summary_8"
+---
diff --git a/content/book/fa/v2/ch00/_summary_9.html b/content/book/fa/v2/ch00/_summary_9.html
new file mode 100644
index 0000000000..847840bde1
--- /dev/null
+++ b/content/book/fa/v2/ch00/_summary_9.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Summary#_summary_9"
+---
diff --git a/content/book/fa/v2/ch00/_svn_annotation.html b/content/book/fa/v2/ch00/_svn_annotation.html
new file mode 100644
index 0000000000..a3fbfa02c2
--- /dev/null
+++ b/content/book/fa/v2/ch00/_svn_annotation.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_svn_annotation"
+---
diff --git a/content/book/fa/v2/ch00/_svn_server_information.html b/content/book/fa/v2/ch00/_svn_server_information.html
new file mode 100644
index 0000000000..0e52fe1342
--- /dev/null
+++ b/content/book/fa/v2/ch00/_svn_server_information.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_svn_server_information"
+---
diff --git a/content/book/fa/v2/ch00/_svn_style_history.html b/content/book/fa/v2/ch00/_svn_style_history.html
new file mode 100644
index 0000000000..1101d884a9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_svn_style_history.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_svn_style_history"
+---
diff --git a/content/book/fa/v2/ch00/_switching_active_branches.html b/content/book/fa/v2/ch00/_switching_active_branches.html
new file mode 100644
index 0000000000..68a43bc205
--- /dev/null
+++ b/content/book/fa/v2/ch00/_switching_active_branches.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_switching_active_branches"
+---
diff --git a/content/book/fa/v2/ch00/_switching_branches.html b/content/book/fa/v2/ch00/_switching_branches.html
new file mode 100644
index 0000000000..fc5e698145
--- /dev/null
+++ b/content/book/fa/v2/ch00/_switching_branches.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-شاخهها-در-یک-کلمه#_switching_branches"
+---
diff --git a/content/book/fa/v2/ch00/_switching_branches_2.html b/content/book/fa/v2/ch00/_switching_branches_2.html
new file mode 100644
index 0000000000..6104eef9f9
--- /dev/null
+++ b/content/book/fa/v2/ch00/_switching_branches_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Submodules#_switching_branches_2"
+---
diff --git a/content/book/fa/v2/ch00/_switching_from_subdirectories_to_submodules.html b/content/book/fa/v2/ch00/_switching_from_subdirectories_to_submodules.html
new file mode 100644
index 0000000000..e22f1d1e50
--- /dev/null
+++ b/content/book/fa/v2/ch00/_switching_from_subdirectories_to_submodules.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Submodules#_switching_from_subdirectories_to_submodules"
+---
diff --git a/content/book/fa/v2/ch00/_synchronizing_the_staging_area.html b/content/book/fa/v2/ch00/_synchronizing_the_staging_area.html
new file mode 100644
index 0000000000..2d01e6ab65
--- /dev/null
+++ b/content/book/fa/v2/ch00/_synchronizing_the_staging_area.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Migrating-to-Git#_synchronizing_the_staging_area"
+---
diff --git a/content/book/fa/v2/ch00/_tagging_releases.html b/content/book/fa/v2/ch00/_tagging_releases.html
new file mode 100644
index 0000000000..5fc712bec4
--- /dev/null
+++ b/content/book/fa/v2/ch00/_tagging_releases.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_tagging_releases"
+---
diff --git a/content/book/fa/v2/ch00/_tags.html b/content/book/fa/v2/ch00/_tags.html
new file mode 100644
index 0000000000..9359804d24
--- /dev/null
+++ b/content/book/fa/v2/ch00/_tags.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Git-References#_tags"
+---
diff --git a/content/book/fa/v2/ch00/_task_list_progress.html b/content/book/fa/v2/ch00/_task_list_progress.html
new file mode 100644
index 0000000000..e657d0425b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_task_list_progress.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_task_list_progress"
+---
diff --git a/content/book/fa/v2/ch00/_task_lists.html b/content/book/fa/v2/ch00/_task_lists.html
new file mode 100644
index 0000000000..f99019fdd1
--- /dev/null
+++ b/content/book/fa/v2/ch00/_task_lists.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#_task_lists"
+---
diff --git a/content/book/fa/v2/ch00/_team_page.html b/content/book/fa/v2/ch00/_team_page.html
new file mode 100644
index 0000000000..99469fcf07
--- /dev/null
+++ b/content/book/fa/v2/ch00/_team_page.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Managing-an-organization#_team_page"
+---
diff --git a/content/book/fa/v2/ch00/_teams.html b/content/book/fa/v2/ch00/_teams.html
new file mode 100644
index 0000000000..0429f3bb37
--- /dev/null
+++ b/content/book/fa/v2/ch00/_teams.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Managing-an-organization#_teams"
+---
diff --git a/content/book/fa/v2/ch00/_testing_it_out.html b/content/book/fa/v2/ch00/_testing_it_out.html
new file mode 100644
index 0000000000..bb176d7ab0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_testing_it_out.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-An-Example-Git-Enforced-Policy#_testing_it_out"
+---
diff --git a/content/book/fa/v2/ch00/_the_audit_log.html b/content/book/fa/v2/ch00/_the_audit_log.html
new file mode 100644
index 0000000000..34ef6b9d31
--- /dev/null
+++ b/content/book/fa/v2/ch00/_the_audit_log.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Managing-an-organization#_the_audit_log"
+---
diff --git a/content/book/fa/v2/ch00/_the_dumb_protocol.html b/content/book/fa/v2/ch00/_the_dumb_protocol.html
new file mode 100644
index 0000000000..1b872be5dc
--- /dev/null
+++ b/content/book/fa/v2/ch00/_the_dumb_protocol.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Transfer-Protocols#_the_dumb_protocol"
+---
diff --git a/content/book/fa/v2/ch00/_the_github_api.html b/content/book/fa/v2/ch00/_the_github_api.html
new file mode 100644
index 0000000000..bcdafd542f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_the_github_api.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_the_github_api"
+---
diff --git a/content/book/fa/v2/ch00/_the_head.html b/content/book/fa/v2/ch00/_the_head.html
new file mode 100644
index 0000000000..8c07d7cd25
--- /dev/null
+++ b/content/book/fa/v2/ch00/_the_head.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_the_head"
+---
diff --git a/content/book/fa/v2/ch00/_the_index.html b/content/book/fa/v2/ch00/_the_index.html
new file mode 100644
index 0000000000..31fd507de8
--- /dev/null
+++ b/content/book/fa/v2/ch00/_the_index.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_the_index"
+---
diff --git a/content/book/fa/v2/ch00/_the_notifications_page.html b/content/book/fa/v2/ch00/_the_notifications_page.html
new file mode 100644
index 0000000000..56b5d4ccdb
--- /dev/null
+++ b/content/book/fa/v2/ch00/_the_notifications_page.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_the_notifications_page"
+---
diff --git a/content/book/fa/v2/ch00/_the_nuclear_option_filter_branch.html b/content/book/fa/v2/ch00/_the_nuclear_option_filter_branch.html
new file mode 100644
index 0000000000..16a2703f90
--- /dev/null
+++ b/content/book/fa/v2/ch00/_the_nuclear_option_filter_branch.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Rewriting-History#_the_nuclear_option_filter_branch"
+---
diff --git a/content/book/fa/v2/ch00/_the_role_of_reset.html b/content/book/fa/v2/ch00/_the_role_of_reset.html
new file mode 100644
index 0000000000..f2bcb8eff2
--- /dev/null
+++ b/content/book/fa/v2/ch00/_the_role_of_reset.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_the_role_of_reset"
+---
diff --git a/content/book/fa/v2/ch00/_the_shortlog.html b/content/book/fa/v2/ch00/_the_shortlog.html
new file mode 100644
index 0000000000..00b8ee7736
--- /dev/null
+++ b/content/book/fa/v2/ch00/_the_shortlog.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_the_shortlog"
+---
diff --git a/content/book/fa/v2/ch00/_the_smart_protocol.html b/content/book/fa/v2/ch00/_the_smart_protocol.html
new file mode 100644
index 0000000000..016f4c667f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_the_smart_protocol.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Transfer-Protocols#_the_smart_protocol"
+---
diff --git a/content/book/fa/v2/ch00/_the_three_trees.html b/content/book/fa/v2/ch00/_the_three_trees.html
new file mode 100644
index 0000000000..c9d8a1a935
--- /dev/null
+++ b/content/book/fa/v2/ch00/_the_three_trees.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_the_three_trees"
+---
diff --git a/content/book/fa/v2/ch00/_the_workflow.html b/content/book/fa/v2/ch00/_the_workflow.html
new file mode 100644
index 0000000000..08b51c5c16
--- /dev/null
+++ b/content/book/fa/v2/ch00/_the_workflow.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_the_workflow"
+---
diff --git a/content/book/fa/v2/ch00/_the_working_directory.html b/content/book/fa/v2/ch00/_the_working_directory.html
new file mode 100644
index 0000000000..ddfdde3dcd
--- /dev/null
+++ b/content/book/fa/v2/ch00/_the_working_directory.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_the_working_directory"
+---
diff --git a/content/book/fa/v2/ch00/_topic_branch.html b/content/book/fa/v2/ch00/_topic_branch.html
new file mode 100644
index 0000000000..f8d7982412
--- /dev/null
+++ b/content/book/fa/v2/ch00/_topic_branch.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-روند-کاری-شاخهسازی#_topic_branch"
+---
diff --git a/content/book/fa/v2/ch00/_tracking_branches.html b/content/book/fa/v2/ch00/_tracking_branches.html
new file mode 100644
index 0000000000..61d8d193f2
--- /dev/null
+++ b/content/book/fa/v2/ch00/_tracking_branches.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-شاخههای-ریموت#_tracking_branches"
+---
diff --git a/content/book/fa/v2/ch00/_tracking_files.html b/content/book/fa/v2/ch00/_tracking_files.html
new file mode 100644
index 0000000000..f13ceede4c
--- /dev/null
+++ b/content/book/fa/v2/ch00/_tracking_files.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-ثبت-تغییرات-در-مخزن#_tracking_files"
+---
diff --git a/content/book/fa/v2/ch00/_transfer_project.html b/content/book/fa/v2/ch00/_transfer_project.html
new file mode 100644
index 0000000000..1226d2c1d6
--- /dev/null
+++ b/content/book/fa/v2/ch00/_transfer_project.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_transfer_project"
+---
diff --git a/content/book/fa/v2/ch00/_transfer_protocols.html b/content/book/fa/v2/ch00/_transfer_protocols.html
new file mode 100644
index 0000000000..dd0c5544ab
--- /dev/null
+++ b/content/book/fa/v2/ch00/_transfer_protocols.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Transfer-Protocols#_transfer_protocols"
+---
diff --git a/content/book/fa/v2/ch00/_transferring_a_project.html b/content/book/fa/v2/ch00/_transferring_a_project.html
new file mode 100644
index 0000000000..4ecca0c694
--- /dev/null
+++ b/content/book/fa/v2/ch00/_transferring_a_project.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_transferring_a_project"
+---
diff --git a/content/book/fa/v2/ch00/_tree_objects.html b/content/book/fa/v2/ch00/_tree_objects.html
new file mode 100644
index 0000000000..ea73dbd132
--- /dev/null
+++ b/content/book/fa/v2/ch00/_tree_objects.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Git-Objects#_tree_objects"
+---
diff --git a/content/book/fa/v2/ch00/_triple_dot.html b/content/book/fa/v2/ch00/_triple_dot.html
new file mode 100644
index 0000000000..fd971f3786
--- /dev/null
+++ b/content/book/fa/v2/ch00/_triple_dot.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Revision-Selection#_triple_dot"
+---
diff --git a/content/book/fa/v2/ch00/_two_factor_authentication.html b/content/book/fa/v2/ch00/_two_factor_authentication.html
new file mode 100644
index 0000000000..dff876bb7b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_two_factor_authentication.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Account-Setup-and-Configuration#_two_factor_authentication"
+---
diff --git a/content/book/fa/v2/ch00/_under_the_hood.html b/content/book/fa/v2/ch00/_under_the_hood.html
new file mode 100644
index 0000000000..24d539d01f
--- /dev/null
+++ b/content/book/fa/v2/ch00/_under_the_hood.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Credential-Storage#_under_the_hood"
+---
diff --git a/content/book/fa/v2/ch00/_undoing.html b/content/book/fa/v2/ch00/_undoing.html
new file mode 100644
index 0000000000..33b1925ce1
--- /dev/null
+++ b/content/book/fa/v2/ch00/_undoing.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-بازگردانی-کارها#_undoing"
+---
diff --git a/content/book/fa/v2/ch00/_undoing_merges.html b/content/book/fa/v2/ch00/_undoing_merges.html
new file mode 100644
index 0000000000..52d68aa04e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_undoing_merges.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Advanced-Merging#_undoing_merges"
+---
diff --git a/content/book/fa/v2/ch00/_unstaging.html b/content/book/fa/v2/ch00/_unstaging.html
new file mode 100644
index 0000000000..65305b2a7d
--- /dev/null
+++ b/content/book/fa/v2/ch00/_unstaging.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-بازگردانی-کارها#_unstaging"
+---
diff --git a/content/book/fa/v2/ch00/_update.html b/content/book/fa/v2/ch00/_update.html
new file mode 100644
index 0000000000..673082982b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_update.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Hooks#_update"
+---
diff --git a/content/book/fa/v2/ch00/_update_powershell_prompt.html b/content/book/fa/v2/ch00/_update_powershell_prompt.html
new file mode 100644
index 0000000000..5e519d910a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_update_powershell_prompt.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Git-in-PowerShell#_update_powershell_prompt"
+---
diff --git a/content/book/fa/v2/ch00/_uploading_data.html b/content/book/fa/v2/ch00/_uploading_data.html
new file mode 100644
index 0000000000..b1fbc3b1a6
--- /dev/null
+++ b/content/book/fa/v2/ch00/_uploading_data.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Transfer-Protocols#_uploading_data"
+---
diff --git a/content/book/fa/v2/ch00/_useful_aliases.html b/content/book/fa/v2/ch00/_useful_aliases.html
new file mode 100644
index 0000000000..412812f828
--- /dev/null
+++ b/content/book/fa/v2/ch00/_useful_aliases.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Submodules#_useful_aliases"
+---
diff --git a/content/book/fa/v2/ch00/_user_signingkey.html b/content/book/fa/v2/ch00/_user_signingkey.html
new file mode 100644
index 0000000000..ef809e698e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_user_signingkey.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#_user_signingkey"
+---
diff --git a/content/book/fa/v2/ch00/_verifying_tags.html b/content/book/fa/v2/ch00/_verifying_tags.html
new file mode 100644
index 0000000000..ea3508f6cf
--- /dev/null
+++ b/content/book/fa/v2/ch00/_verifying_tags.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Signing-Your-Work#_verifying_tags"
+---
diff --git a/content/book/fa/v2/ch00/_viewing_history.html b/content/book/fa/v2/ch00/_viewing_history.html
new file mode 100644
index 0000000000..d718939e1b
--- /dev/null
+++ b/content/book/fa/v2/ch00/_viewing_history.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-دیدن-تاریخچهٔ-کامیتها#_viewing_history"
+---
diff --git a/content/book/fa/v2/ch00/_web_hook.html b/content/book/fa/v2/ch00/_web_hook.html
new file mode 100644
index 0000000000..6521d14f83
--- /dev/null
+++ b/content/book/fa/v2/ch00/_web_hook.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_web_hook"
+---
diff --git a/content/book/fa/v2/ch00/_web_hook_debug.html b/content/book/fa/v2/ch00/_web_hook_debug.html
new file mode 100644
index 0000000000..bff0230547
--- /dev/null
+++ b/content/book/fa/v2/ch00/_web_hook_debug.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Scripting-GitHub#_web_hook_debug"
+---
diff --git a/content/book/fa/v2/ch00/_web_notifications.html b/content/book/fa/v2/ch00/_web_notifications.html
new file mode 100644
index 0000000000..6624694431
--- /dev/null
+++ b/content/book/fa/v2/ch00/_web_notifications.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Maintaining-a-Project#_web_notifications"
+---
diff --git a/content/book/fa/v2/ch00/_what_is_introduced.html b/content/book/fa/v2/ch00/_what_is_introduced.html
new file mode 100644
index 0000000000..7c8fbe2035
--- /dev/null
+++ b/content/book/fa/v2/ch00/_what_is_introduced.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_what_is_introduced"
+---
diff --git a/content/book/fa/v2/ch00/_which_tool.html b/content/book/fa/v2/ch00/_which_tool.html
new file mode 100644
index 0000000000..47e0d5228e
--- /dev/null
+++ b/content/book/fa/v2/ch00/_which_tool.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_which_tool"
+---
diff --git a/content/book/fa/v2/ch00/_with_paths.html b/content/book/fa/v2/ch00/_with_paths.html
new file mode 100644
index 0000000000..90c4fe2d72
--- /dev/null
+++ b/content/book/fa/v2/ch00/_with_paths.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_with_paths"
+---
diff --git a/content/book/fa/v2/ch00/_without_paths.html b/content/book/fa/v2/ch00/_without_paths.html
new file mode 100644
index 0000000000..4d074414bc
--- /dev/null
+++ b/content/book/fa/v2/ch00/_without_paths.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Reset-Demystified#_without_paths"
+---
diff --git a/content/book/fa/v2/ch00/_workflow.html b/content/book/fa/v2/ch00/_workflow.html
new file mode 100644
index 0000000000..c0a9eb3757
--- /dev/null
+++ b/content/book/fa/v2/ch00/_workflow.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_workflow"
+---
diff --git a/content/book/fa/v2/ch00/_workflow_2.html b/content/book/fa/v2/ch00/_workflow_2.html
new file mode 100644
index 0000000000..126154e24d
--- /dev/null
+++ b/content/book/fa/v2/ch00/_workflow_2.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_workflow_2"
+---
diff --git a/content/book/fa/v2/ch00/_workflow_3.html b/content/book/fa/v2/ch00/_workflow_3.html
new file mode 100644
index 0000000000..89861de847
--- /dev/null
+++ b/content/book/fa/v2/ch00/_workflow_3.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_workflow_3"
+---
diff --git a/content/book/fa/v2/ch00/_workflow_git_tf.html b/content/book/fa/v2/ch00/_workflow_git_tf.html
new file mode 100644
index 0000000000..fb6c957e18
--- /dev/null
+++ b/content/book/fa/v2/ch00/_workflow_git_tf.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_workflow_git_tf"
+---
diff --git a/content/book/fa/v2/ch00/_workflow_git_tfs.html b/content/book/fa/v2/ch00/_workflow_git_tfs.html
new file mode 100644
index 0000000000..38b70c77b0
--- /dev/null
+++ b/content/book/fa/v2/ch00/_workflow_git_tfs.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#_workflow_git_tfs"
+---
diff --git a/content/book/fa/v2/ch00/_working_on_a_project_with_submodules.html b/content/book/fa/v2/ch00/_working_on_a_project_with_submodules.html
new file mode 100644
index 0000000000..d6daa68a18
--- /dev/null
+++ b/content/book/fa/v2/ch00/_working_on_a_project_with_submodules.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Submodules#_working_on_a_project_with_submodules"
+---
diff --git a/content/book/fa/v2/ch00/_working_on_a_submodule.html b/content/book/fa/v2/ch00/_working_on_a_submodule.html
new file mode 100644
index 0000000000..488099ff9c
--- /dev/null
+++ b/content/book/fa/v2/ch00/_working_on_a_submodule.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Submodules#_working_on_a_submodule"
+---
diff --git a/content/book/fa/v2/ch00/_your_email_addresses.html b/content/book/fa/v2/ch00/_your_email_addresses.html
new file mode 100644
index 0000000000..563b5ec52a
--- /dev/null
+++ b/content/book/fa/v2/ch00/_your_email_addresses.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Account-Setup-and-Configuration#_your_email_addresses"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\247\330\257\330\272\330\247\331\205_\330\261\331\210\331\206\330\257\331\207\330\247\333\214_\332\251\330\247\330\261\333\214.html" "b/content/book/fa/v2/ch00/_\330\247\330\257\330\272\330\247\331\205_\330\261\331\210\331\206\330\257\331\207\330\247\333\214_\332\251\330\247\330\261\333\214.html"
new file mode 100644
index 0000000000..c5b826b0c4
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\247\330\257\330\272\330\247\331\205_\330\261\331\210\331\206\330\257\331\207\330\247\333\214_\332\251\330\247\330\261\333\214.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_ادغام_روندهای_کاری"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\247\330\263\330\252\331\201\330\247\330\257\331\207_\330\247\330\250\330\252\330\257\330\247\333\214\333\214.html" "b/content/book/fa/v2/ch00/_\330\247\330\263\330\252\331\201\330\247\330\257\331\207_\330\247\330\250\330\252\330\257\330\247\333\214\333\214.html"
new file mode 100644
index 0000000000..e07c810a22
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\247\330\263\330\252\331\201\330\247\330\257\331\207_\330\247\330\250\330\252\330\257\330\247\333\214\333\214.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گیتلب#_استفاده_ابتدایی"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\247\330\263\330\252\333\214\330\254\332\251\330\261\330\257\331\206_\331\201\330\247\333\214\331\204\331\207\330\247\333\214_\331\210\333\214\330\261\330\247\333\214\330\264\330\264\330\257\331\207.html" "b/content/book/fa/v2/ch00/_\330\247\330\263\330\252\333\214\330\254\332\251\330\261\330\257\331\206_\331\201\330\247\333\214\331\204\331\207\330\247\333\214_\331\210\333\214\330\261\330\247\333\214\330\264\330\264\330\257\331\207.html"
new file mode 100644
index 0000000000..7f0cd81c20
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\247\330\263\330\252\333\214\330\254\332\251\330\261\330\257\331\206_\331\201\330\247\333\214\331\204\331\207\330\247\333\214_\331\210\333\214\330\261\330\247\333\214\330\264\330\264\330\257\331\207.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-ثبت-تغییرات-در-مخزن#_استیجکردن_فایلهای_ویرایششده"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\247\330\263\331\206\331\276\330\264\330\247\330\252\331\207\330\247_\331\206\331\207_\330\252\331\201\330\247\331\210\330\252\331\207\330\247.html" "b/content/book/fa/v2/ch00/_\330\247\330\263\331\206\331\276\330\264\330\247\330\252\331\207\330\247_\331\206\331\207_\330\252\331\201\330\247\331\210\330\252\331\207\330\247.html"
new file mode 100644
index 0000000000..e5fbdad3fe
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\247\330\263\331\206\331\276\330\264\330\247\330\252\331\207\330\247_\331\206\331\207_\330\252\331\201\330\247\331\210\330\252\331\207\330\247.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-گیت-چیست؟#_اسنپشاتها_نه_تفاوتها"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\247\330\266\330\247\331\201\331\207_\332\251\330\261\330\257\331\206_\331\205\330\256\330\247\330\262\331\206_\330\261\333\214\331\205\331\210\330\252.html" "b/content/book/fa/v2/ch00/_\330\247\330\266\330\247\331\201\331\207_\332\251\330\261\330\257\331\206_\331\205\330\256\330\247\330\262\331\206_\330\261\333\214\331\205\331\210\330\252.html"
new file mode 100644
index 0000000000..2f329e5fca
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\247\330\266\330\247\331\201\331\207_\332\251\330\261\330\257\331\206_\331\205\330\256\330\247\330\262\331\206_\330\261\333\214\331\205\331\210\330\252.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-کار-با-ریموتها#_اضافه_کردن_مخازن_ریموت"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\247\330\271\331\205\330\247\331\204_\331\210\330\265\331\204\331\207_\330\250\330\247_apply.html" "b/content/book/fa/v2/ch00/_\330\247\330\271\331\205\330\247\331\204_\331\210\330\265\331\204\331\207_\330\250\330\247_apply.html"
new file mode 100644
index 0000000000..b42c39f55e
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\247\330\271\331\205\330\247\331\204_\331\210\330\265\331\204\331\207_\330\250\330\247_apply.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_اعمال_وصله_با_apply"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\250\330\247\330\262\332\257\330\261\330\257\330\247\331\206\333\214_\330\252\330\272\333\214\333\214\330\261\330\247\330\252_\333\214\332\251_\331\201\330\247\333\214\331\204_\330\252\330\272\333\214\333\214\330\261\333\214\330\247\331\201\330\252\331\207.html" "b/content/book/fa/v2/ch00/_\330\250\330\247\330\262\332\257\330\261\330\257\330\247\331\206\333\214_\330\252\330\272\333\214\333\214\330\261\330\247\330\252_\333\214\332\251_\331\201\330\247\333\214\331\204_\330\252\330\272\333\214\333\214\330\261\333\214\330\247\331\201\330\252\331\207.html"
new file mode 100644
index 0000000000..193db94120
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\250\330\247\330\262\332\257\330\261\330\257\330\247\331\206\333\214_\330\252\330\272\333\214\333\214\330\261\330\247\330\252_\333\214\332\251_\331\201\330\247\333\214\331\204_\330\252\330\272\333\214\333\214\330\261\333\214\330\247\331\201\330\252\331\207.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-بازگردانی-کارها#_بازگردانی_تغییرات_یک_فایل_تغییریافته"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\250\330\261\330\261\330\263\333\214_\330\252\331\206\330\270\333\214\331\205\330\247\330\252_\330\264\331\205\330\247.html" "b/content/book/fa/v2/ch00/_\330\250\330\261\330\261\330\263\333\214_\330\252\331\206\330\270\333\214\331\205\330\247\330\252_\330\264\331\205\330\247.html"
new file mode 100644
index 0000000000..4fcbdb13f3
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\250\330\261\330\261\330\263\333\214_\330\252\331\206\330\270\333\214\331\205\330\247\330\252_\330\264\331\205\330\247.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-اولین-راهاندازی-گیت#_بررسی_تنظیمات_شما"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\250\330\261\332\206\330\263\330\250\331\207\330\247\333\214_\330\263\330\250\332\251.html" "b/content/book/fa/v2/ch00/_\330\250\330\261\332\206\330\263\330\250\331\207\330\247\333\214_\330\263\330\250\332\251.html"
new file mode 100644
index 0000000000..12cdf903b1
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\250\330\261\332\206\330\263\330\250\331\207\330\247\333\214_\330\263\330\250\332\251.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-برچسبگذاری#_برچسبهای_سبک"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\250\330\271\330\257\330\247\331\213_\330\250\330\261\332\206\330\263\330\250_\332\257\330\260\330\247\330\264\330\252\331\206.html" "b/content/book/fa/v2/ch00/_\330\250\330\271\330\257\330\247\331\213_\330\250\330\261\332\206\330\263\330\250_\332\257\330\260\330\247\330\264\330\252\331\206.html"
new file mode 100644
index 0000000000..45bd6d2e79
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\250\330\271\330\257\330\247\331\213_\330\250\330\261\332\206\330\263\330\250_\332\257\330\260\330\247\330\264\330\252\331\206.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-برچسبگذاری#_بعداً_برچسب_گذاشتن"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\250\331\207_\330\267\331\210\330\261_\332\251\331\204\333\214_\332\257\333\214\330\252_\331\201\331\202\330\267_\330\257\330\247\330\257\331\207_\331\205\333\214\330\247\331\201\330\262\330\247\333\214\330\257.html" "b/content/book/fa/v2/ch00/_\330\250\331\207_\330\267\331\210\330\261_\332\251\331\204\333\214_\332\257\333\214\330\252_\331\201\331\202\330\267_\330\257\330\247\330\257\331\207_\331\205\333\214\330\247\331\201\330\262\330\247\333\214\330\257.html"
new file mode 100644
index 0000000000..c47a32e983
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\250\331\207_\330\267\331\210\330\261_\332\251\331\204\333\214_\332\257\333\214\330\252_\331\201\331\202\330\267_\330\257\330\247\330\257\331\207_\331\205\333\214\330\247\331\201\330\262\330\247\333\214\330\257.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-گیت-چیست؟#_به_طور_کلی_گیت_فقط_داده_میافزاید"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\252\330\247\330\261\333\214\330\256\332\206\331\207\331\224_\332\251\331\210\330\252\330\247\331\207\333\214_\330\247\330\262_\332\257\333\214\330\252.html" "b/content/book/fa/v2/ch00/_\330\252\330\247\330\261\333\214\330\256\332\206\331\207\331\224_\332\251\331\210\330\252\330\247\331\207\333\214_\330\247\330\262_\332\257\333\214\330\252.html"
new file mode 100644
index 0000000000..3df0fbaa02
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\252\330\247\330\261\333\214\330\256\332\206\331\207\331\224_\332\251\331\210\330\252\330\247\331\207\333\214_\330\247\330\262_\332\257\333\214\330\252.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-تاریخچهٔ-کوتاهی-از-گیت#_تاریخچهٔ_کوتاهی_از_گیت"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\252\330\271\330\250\333\214\331\207_\331\210_\333\214\332\251\331\276\330\247\330\261\332\206\331\207\330\263\330\247\330\262\333\214_\332\251\330\247\330\261_\331\205\330\264\330\247\330\261\332\251\330\252\330\264\330\257\331\207.html" "b/content/book/fa/v2/ch00/_\330\252\330\271\330\250\333\214\331\207_\331\210_\333\214\332\251\331\276\330\247\330\261\332\206\331\207\330\263\330\247\330\262\333\214_\332\251\330\247\330\261_\331\205\330\264\330\247\330\261\332\251\330\252\330\264\330\257\331\207.html"
new file mode 100644
index 0000000000..36da88aa89
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\252\330\271\330\250\333\214\331\207_\331\210_\333\214\332\251\331\276\330\247\330\261\332\206\331\207\330\263\330\247\330\262\333\214_\332\251\330\247\330\261_\331\205\330\264\330\247\330\261\332\251\330\252\330\264\330\257\331\207.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_تعبیه_و_یکپارچهسازی_کار_مشارکتشده"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\252\330\272\333\214\333\214\330\261_\331\206\330\247\331\205_\331\210_\330\255\330\260\331\201_\330\261\333\214\331\205\331\210\330\252\331\207\330\247.html" "b/content/book/fa/v2/ch00/_\330\252\330\272\333\214\333\214\330\261_\331\206\330\247\331\205_\331\210_\330\255\330\260\331\201_\330\261\333\214\331\205\331\210\330\252\331\207\330\247.html"
new file mode 100644
index 0000000000..3dd74f4a55
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\252\330\272\333\214\333\214\330\261_\331\206\330\247\331\205_\331\210_\330\255\330\260\331\201_\330\261\333\214\331\205\331\210\330\252\331\207\330\247.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-کار-با-ریموتها#_تغییر_نام_و_حذف_ریموتها"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\252\333\214\331\205\331\207\330\247\333\214_\330\256\330\265\331\210\330\265\333\214_\331\205\330\257\333\214\330\261\333\214\330\252\330\264\330\257\331\207.html" "b/content/book/fa/v2/ch00/_\330\252\333\214\331\205\331\207\330\247\333\214_\330\256\330\265\331\210\330\265\333\214_\331\205\330\257\333\214\330\261\333\214\330\252\330\264\330\257\331\207.html"
new file mode 100644
index 0000000000..8bf8b41f93
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\252\333\214\331\205\331\207\330\247\333\214_\330\256\330\265\331\210\330\265\333\214_\331\205\330\257\333\214\330\261\333\214\330\252\330\264\330\257\331\207.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-مشارکت-در-یک-پروژه#_تیمهای_خصوصی_مدیریتشده"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\253\330\250\330\252_\330\252\330\272\333\214\333\214\330\261\330\247\330\252_\330\257\330\261_\331\205\330\256\330\262\331\206.html" "b/content/book/fa/v2/ch00/_\330\253\330\250\330\252_\330\252\330\272\333\214\333\214\330\261\330\247\330\252_\330\257\330\261_\331\205\330\256\330\262\331\206.html"
new file mode 100644
index 0000000000..6de94ef489
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\253\330\250\330\252_\330\252\330\272\333\214\333\214\330\261\330\247\330\252_\330\257\330\261_\331\205\330\256\330\262\331\206.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-ثبت-تغییرات-در-مخزن#_ثبت_تغییرات_در_مخزن"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\255\330\260\331\201_\332\251\330\261\330\257\331\206_\330\250\330\261\332\206\330\263\330\250\331\207\330\247.html" "b/content/book/fa/v2/ch00/_\330\255\330\260\331\201_\332\251\330\261\330\257\331\206_\330\250\330\261\332\206\330\263\330\250\331\207\330\247.html"
new file mode 100644
index 0000000000..f9a38a883f
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\255\330\260\331\201_\332\251\330\261\330\257\331\206_\330\250\330\261\332\206\330\263\330\250\331\207\330\247.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-برچسبگذاری#_حذف_کردن_برچسبها"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\256\330\267_\331\201\330\261\331\205\330\247\331\206.html" "b/content/book/fa/v2/ch00/_\330\256\330\267_\331\201\330\261\331\205\330\247\331\206.html"
new file mode 100644
index 0000000000..929f604655
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\256\330\267_\331\201\330\261\331\205\330\247\331\206.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-خط-فرمان#_خط_فرمان"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207.html" "b/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207.html"
new file mode 100644
index 0000000000..1a96ea9512
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-خلاصه#_خلاصه"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207_2.html" "b/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207_2.html"
new file mode 100644
index 0000000000..692fa0f713
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207_2.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-خلاصه#_خلاصه_2"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207_3.html" "b/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207_3.html"
new file mode 100644
index 0000000000..c0dba3a6a1
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207_3.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-خلاصه#_خلاصه_3"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207_4.html" "b/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207_4.html"
new file mode 100644
index 0000000000..576a117edf
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207_4.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-خلاصه#_خلاصه_4"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207_5.html" "b/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207_5.html"
new file mode 100644
index 0000000000..1abdb0257c
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207_5.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-مشارکت-در-یک-پروژه#_خلاصه_5"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207_6.html" "b/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207_6.html"
new file mode 100644
index 0000000000..4fdb2a239c
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207_6.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-خلاصه#_خلاصه_6"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207\331\224_\330\261\331\210\331\206\330\257\331\207\330\247\333\214_\332\251\330\247\330\261\333\214.html" "b/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207\331\224_\330\261\331\210\331\206\330\257\331\207\330\247\333\214_\332\251\330\247\330\261\333\214.html"
new file mode 100644
index 0000000000..0d3307e70d
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\256\331\204\330\247\330\265\331\207\331\224_\330\261\331\210\331\206\330\257\331\207\330\247\333\214_\332\251\330\247\330\261\333\214.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-روندهای-کاری-توزیعشده#_خلاصهٔ_روندهای_کاری"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\257\330\261\330\250\330\247\330\261\331\207\331\224_\332\251\331\206\330\252\330\261\331\204_\331\206\330\263\330\256\331\207.html" "b/content/book/fa/v2/ch00/_\330\257\330\261\330\250\330\247\330\261\331\207\331\224_\332\251\331\206\330\252\330\261\331\204_\331\206\330\263\330\256\331\207.html"
new file mode 100644
index 0000000000..d42b161db5
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\257\330\261\330\250\330\247\330\261\331\207\331\224_\332\251\331\206\330\252\330\261\331\204_\331\206\330\263\330\256\331\207.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-دربارهٔ-کنترل-نسخه#_دربارهٔ_کنترل_نسخه"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\257\330\263\330\252\330\261\330\263\333\214_ssh.html" "b/content/book/fa/v2/ch00/_\330\257\330\263\330\252\330\261\330\263\333\214_ssh.html"
new file mode 100644
index 0000000000..9da9edaa22
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\257\330\263\330\252\330\261\330\263\333\214_ssh.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-راهاندازی-گیت-در-سرور#_دسترسی_ssh"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\257\333\214\331\205\331\206_\332\257\333\214\330\252.html" "b/content/book/fa/v2/ch00/_\330\257\333\214\331\205\331\206_\332\257\333\214\330\252.html"
new file mode 100644
index 0000000000..09a879fd96
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\257\333\214\331\205\331\206_\332\257\333\214\330\252.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-دیمن-گیت#_دیمن_گیت"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\261\330\247\331\207\330\247\331\206\330\257\330\247\330\262\333\214_\331\205\330\256\330\262\331\206_\332\257\333\214\330\252_\330\257\330\261_\333\214\332\251_\331\276\331\210\330\264\331\207_\331\205\331\210\330\254\331\210\330\257.html" "b/content/book/fa/v2/ch00/_\330\261\330\247\331\207\330\247\331\206\330\257\330\247\330\262\333\214_\331\205\330\256\330\262\331\206_\332\257\333\214\330\252_\330\257\330\261_\333\214\332\251_\331\276\331\210\330\264\331\207_\331\205\331\210\330\254\331\210\330\257.html"
new file mode 100644
index 0000000000..a840edcbfc
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\261\330\247\331\207\330\247\331\206\330\257\330\247\330\262\333\214_\331\205\330\256\330\262\331\206_\332\257\333\214\330\252_\330\257\330\261_\333\214\332\251_\331\276\331\210\330\264\331\207_\331\205\331\210\330\254\331\210\330\257.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-دستیابی-به-یک-مخزن-گیت#_راهاندازی_مخزن_گیت_در_یک_پوشه_موجود"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\261\330\247\331\207\330\247\331\206\330\257\330\247\330\262\333\214\331\207\330\247\333\214_\332\251\331\210\332\206\332\251.html" "b/content/book/fa/v2/ch00/_\330\261\330\247\331\207\330\247\331\206\330\257\330\247\330\262\333\214\331\207\330\247\333\214_\332\251\331\210\332\206\332\251.html"
new file mode 100644
index 0000000000..72b41832b3
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\261\330\247\331\207\330\247\331\206\330\257\330\247\330\262\333\214\331\207\330\247\333\214_\332\251\331\210\332\206\332\251.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-راهاندازی-گیت-در-سرور#_راهاندازیهای_کوچک"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\261\330\261\330\261\331\207.html" "b/content/book/fa/v2/ch00/_\330\261\330\261\330\261\331\207.html"
new file mode 100644
index 0000000000..6b7722f70b
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\261\330\261\330\261\331\207.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_ررره"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\261\331\210\331\206\330\257_\332\251\330\247\330\261\333\214_\330\247\330\257\330\272\330\247\331\205_\330\250\330\262\330\261\332\257.html" "b/content/book/fa/v2/ch00/_\330\261\331\210\331\206\330\257_\332\251\330\247\330\261\333\214_\330\247\330\257\330\272\330\247\331\205_\330\250\330\262\330\261\332\257.html"
new file mode 100644
index 0000000000..bb20b4363b
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\261\331\210\331\206\330\257_\332\251\330\247\330\261\333\214_\330\247\330\257\330\272\330\247\331\205_\330\250\330\262\330\261\332\257.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_روند_کاری_ادغام_بزرگ"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\261\331\210\331\206\330\257_\332\251\330\247\330\261\333\214_\330\257\333\214\332\251\330\252\330\247\330\252\331\210\330\261_\331\210_\330\263\330\252\331\210\330\247\331\206\331\207\330\247.html" "b/content/book/fa/v2/ch00/_\330\261\331\210\331\206\330\257_\332\251\330\247\330\261\333\214_\330\257\333\214\332\251\330\252\330\247\330\252\331\210\330\261_\331\210_\330\263\330\252\331\210\330\247\331\206\331\207\330\247.html"
new file mode 100644
index 0000000000..f7b4da59da
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\261\331\210\331\206\330\257_\332\251\330\247\330\261\333\214_\330\257\333\214\332\251\330\252\330\247\330\252\331\210\330\261_\331\210_\330\263\330\252\331\210\330\247\331\206\331\207\330\247.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-روندهای-کاری-توزیعشده#_روند_کاری_دیکتاتور_و_ستوانها"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\261\331\210\331\206\330\257_\332\251\330\247\330\261\333\214_\330\264\330\247\330\256\331\207\330\263\330\247\330\262\333\214.html" "b/content/book/fa/v2/ch00/_\330\261\331\210\331\206\330\257_\332\251\330\247\330\261\333\214_\330\264\330\247\330\256\331\207\330\263\330\247\330\262\333\214.html"
new file mode 100644
index 0000000000..78bf2f4943
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\261\331\210\331\206\330\257_\332\251\330\247\330\261\333\214_\330\264\330\247\330\256\331\207\330\263\330\247\330\262\333\214.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-روند-کاری-شاخهسازی#_روند_کاری_شاخهسازی"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\261\331\210\331\206\330\257_\332\251\330\247\330\261\333\214_\331\205\330\252\331\205\330\261\332\251\330\262.html" "b/content/book/fa/v2/ch00/_\330\261\331\210\331\206\330\257_\332\251\330\247\330\261\333\214_\331\205\330\252\331\205\330\261\332\251\330\262.html"
new file mode 100644
index 0000000000..67278ce191
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\261\331\210\331\206\330\257_\332\251\330\247\330\261\333\214_\331\205\330\252\331\205\330\261\332\251\330\262.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-روندهای-کاری-توزیعشده#_روند_کاری_متمرکز"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\261\331\210\331\206\330\257\331\207\330\247\333\214_\332\251\330\247\330\261\333\214_\330\252\331\210\330\262\333\214\330\271\330\264\330\257\331\207.html" "b/content/book/fa/v2/ch00/_\330\261\331\210\331\206\330\257\331\207\330\247\333\214_\332\251\330\247\330\261\333\214_\330\252\331\210\330\262\333\214\330\271\330\264\330\257\331\207.html"
new file mode 100644
index 0000000000..f872578022
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\261\331\210\331\206\330\257\331\207\330\247\333\214_\332\251\330\247\330\261\333\214_\330\252\331\210\330\262\333\214\330\271\330\264\330\257\331\207.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-روندهای-کاری-توزیعشده#_روندهای_کاری_توزیعشده"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\261\333\214\330\250\333\214\330\263_\330\257\330\261_\331\205\331\202\330\247\330\250\331\204_\330\247\330\257\330\272\330\247\331\205.html" "b/content/book/fa/v2/ch00/_\330\261\333\214\330\250\333\214\330\263_\330\257\330\261_\331\205\331\202\330\247\330\250\331\204_\330\247\330\257\330\272\330\247\331\205.html"
new file mode 100644
index 0000000000..e1cf89a23b
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\261\333\214\330\250\333\214\330\263_\330\257\330\261_\331\205\331\202\330\247\330\250\331\204_\330\247\330\257\330\272\330\247\331\205.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-ریبیسکردن#_ریبیس_در_مقابل_ادغام"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\261\333\214\330\250\333\214\330\263_\331\205\331\202\330\257\331\205\330\247\330\252\333\214.html" "b/content/book/fa/v2/ch00/_\330\261\333\214\330\250\333\214\330\263_\331\205\331\202\330\257\331\205\330\247\330\252\333\214.html"
new file mode 100644
index 0000000000..d24315a0c9
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\261\333\214\330\250\333\214\330\263_\331\205\331\202\330\257\331\205\330\247\330\252\333\214.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-ریبیسکردن#_ریبیس_مقدماتی"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\261\333\214\330\250\333\214\330\263\331\207\330\247\333\214_\330\254\330\260\330\247\330\250\330\252\330\261.html" "b/content/book/fa/v2/ch00/_\330\261\333\214\330\250\333\214\330\263\331\207\330\247\333\214_\330\254\330\260\330\247\330\250\330\252\330\261.html"
new file mode 100644
index 0000000000..4ec2206352
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\261\333\214\330\250\333\214\330\263\331\207\330\247\333\214_\330\254\330\260\330\247\330\250\330\252\330\261.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-ریبیسکردن#_ریبیسهای_جذابتر"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\263\330\247\330\256\330\252\331\206_\330\250\330\261\332\206\330\263\330\250\331\207\330\247.html" "b/content/book/fa/v2/ch00/_\330\263\330\247\330\256\330\252\331\206_\330\250\330\261\332\206\330\263\330\250\331\207\330\247.html"
new file mode 100644
index 0000000000..0eb603082c
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\263\330\247\330\256\330\252\331\206_\330\250\330\261\332\206\330\263\330\250\331\207\330\247.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-برچسبگذاری#_ساختن_برچسبها"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\263\331\207_\330\255\330\247\331\204\330\252_\331\205\331\205\332\251\331\206\331\207.html" "b/content/book/fa/v2/ch00/_\330\263\331\207_\330\255\330\247\331\204\330\252_\331\205\331\205\332\251\331\206\331\207.html"
new file mode 100644
index 0000000000..15051aa035
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\263\331\207_\330\255\330\247\331\204\330\252_\331\205\331\205\332\251\331\206\331\207.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-گیت-چیست؟#_سه_حالت_ممکنه"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\263\333\214\330\263\330\252\331\205\331\207\330\247\333\214_\332\251\331\206\330\252\330\261\331\204_\331\206\330\263\330\256\331\207_\330\252\331\210\330\262\333\214\330\271\330\264\330\257\331\207.html" "b/content/book/fa/v2/ch00/_\330\263\333\214\330\263\330\252\331\205\331\207\330\247\333\214_\332\251\331\206\330\252\330\261\331\204_\331\206\330\263\330\256\331\207_\330\252\331\210\330\262\333\214\330\271\330\264\330\257\331\207.html"
new file mode 100644
index 0000000000..34156fd8f3
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\263\333\214\330\263\330\252\331\205\331\207\330\247\333\214_\332\251\331\206\330\252\330\261\331\204_\331\206\330\263\330\256\331\207_\330\252\331\210\330\262\333\214\330\271\330\264\330\257\331\207.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-دربارهٔ-کنترل-نسخه#_سیستمهای_کنترل_نسخه_توزیعشده"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\263\333\214\330\263\330\252\331\205\331\207\330\247\333\214_\332\251\331\206\330\252\330\261\331\204_\331\206\330\263\330\256\331\207\331\224_\331\205\330\252\331\205\330\261\332\251\330\262.html" "b/content/book/fa/v2/ch00/_\330\263\333\214\330\263\330\252\331\205\331\207\330\247\333\214_\332\251\331\206\330\252\330\261\331\204_\331\206\330\263\330\256\331\207\331\224_\331\205\330\252\331\205\330\261\332\251\330\262.html"
new file mode 100644
index 0000000000..b9462056e0
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\263\333\214\330\263\330\252\331\205\331\207\330\247\333\214_\332\251\331\206\330\252\330\261\331\204_\331\206\330\263\330\256\331\207\331\224_\331\205\330\252\331\205\330\261\332\251\330\262.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-دربارهٔ-کنترل-نسخه#_سیستمهای_کنترل_نسخهٔ_متمرکز"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\263\333\214\330\263\330\252\331\205\331\207\330\247\333\214_\332\251\331\206\330\252\330\261\331\204_\331\206\330\263\330\256\331\207\331\224_\331\205\330\255\331\204\333\214.html" "b/content/book/fa/v2/ch00/_\330\263\333\214\330\263\330\252\331\205\331\207\330\247\333\214_\332\251\331\206\330\252\330\261\331\204_\331\206\330\263\330\256\331\207\331\224_\331\205\330\255\331\204\333\214.html"
new file mode 100644
index 0000000000..c7ef389394
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\263\333\214\330\263\330\252\331\205\331\207\330\247\333\214_\332\251\331\206\330\252\330\261\331\204_\331\206\330\263\330\256\331\207\331\224_\331\205\330\255\331\204\333\214.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-دربارهٔ-کنترل-نسخه#_سیستمهای_کنترل_نسخهٔ_محلی"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\264\330\247\330\256\331\207\330\263\330\247\330\262\333\214_\331\210_\330\247\330\257\330\272\330\247\331\205_\331\205\331\202\330\257\331\205\330\247\330\252\333\214.html" "b/content/book/fa/v2/ch00/_\330\264\330\247\330\256\331\207\330\263\330\247\330\262\333\214_\331\210_\330\247\330\257\330\272\330\247\331\205_\331\205\331\202\330\257\331\205\330\247\330\252\333\214.html"
new file mode 100644
index 0000000000..ef13c88bd5
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\264\330\247\330\256\331\207\330\263\330\247\330\262\333\214_\331\210_\330\247\330\257\330\272\330\247\331\205_\331\205\331\202\330\257\331\205\330\247\330\252\333\214.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-شاخهسازی-و-ادغام-مقدماتی#_شاخهسازی_و_ادغام_مقدماتی"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\264\330\247\330\256\331\207\331\207\330\247\333\214_\330\250\330\247_\331\202\330\257\331\205\330\252.html" "b/content/book/fa/v2/ch00/_\330\264\330\247\330\256\331\207\331\207\330\247\333\214_\330\250\330\247_\331\202\330\257\331\205\330\252.html"
new file mode 100644
index 0000000000..b987cd3c26
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\264\330\247\330\256\331\207\331\207\330\247\333\214_\330\250\330\247_\331\202\330\257\331\205\330\252.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-روند-کاری-شاخهسازی#_شاخههای_با_قدمت"
+---
diff --git "a/content/book/fa/v2/ch00/_\330\272\330\247\331\204\330\250_\330\271\331\205\331\204\333\214\330\247\330\252\331\207\330\247_\331\205\330\255\331\204\333\214_\330\247\330\263\330\252.html" "b/content/book/fa/v2/ch00/_\330\272\330\247\331\204\330\250_\330\271\331\205\331\204\333\214\330\247\330\252\331\207\330\247_\331\205\330\255\331\204\333\214_\330\247\330\263\330\252.html"
new file mode 100644
index 0000000000..807cc81c67
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\330\272\330\247\331\204\330\250_\330\271\331\205\331\204\333\214\330\247\330\252\331\207\330\247_\331\205\330\255\331\204\333\214_\330\247\330\263\330\252.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-گیت-چیست؟#_غالب_عملیاتها_محلی_است"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\202\331\204\330\247\330\250\331\207\330\247.html" "b/content/book/fa/v2/ch00/_\331\202\331\204\330\247\330\250\331\207\330\247.html"
new file mode 100644
index 0000000000..05904150ae
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\202\331\204\330\247\330\250\331\207\330\247.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گیتلب#_قلابها"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\204\333\214\330\263\330\252\332\251\330\261\330\257\331\206_\330\250\330\261\332\206\330\263\330\250\331\207\330\247\333\214\330\252\330\247\331\206.html" "b/content/book/fa/v2/ch00/_\331\204\333\214\330\263\330\252\332\251\330\261\330\257\331\206_\330\250\330\261\332\206\330\263\330\250\331\207\330\247\333\214\330\252\330\247\331\206.html"
new file mode 100644
index 0000000000..f4a9415082
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\204\333\214\330\263\330\252\332\251\330\261\330\257\331\206_\330\250\330\261\332\206\330\263\330\250\331\207\330\247\333\214\330\252\330\247\331\206.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-برچسبگذاری#_لیستکردن_برچسبهایتان"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\205\330\255\330\257\331\210\330\257_\332\251\330\261\330\257\331\206_\330\256\330\261\331\210\330\254\333\214_\331\204\330\247\332\257.html" "b/content/book/fa/v2/ch00/_\331\205\330\255\330\257\331\210\330\257_\332\251\330\261\330\257\331\206_\330\256\330\261\331\210\330\254\333\214_\331\204\330\247\332\257.html"
new file mode 100644
index 0000000000..195225d413
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\205\330\255\330\257\331\210\330\257_\332\251\330\261\330\257\331\206_\330\256\330\261\331\210\330\254\333\214_\331\204\330\247\332\257.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-دیدن-تاریخچهٔ-کامیتها#_محدود_کردن_خروجی_لاگ"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\205\330\257\333\214\330\261\333\214\330\252.html" "b/content/book/fa/v2/ch00/_\331\205\330\257\333\214\330\261\333\214\330\252.html"
new file mode 100644
index 0000000000..b7edf1f137
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\205\330\257\333\214\330\261\333\214\330\252.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گیتلب#_مدیریت"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\205\330\262\330\247\333\214\330\247.html" "b/content/book/fa/v2/ch00/_\331\205\330\262\330\247\333\214\330\247.html"
new file mode 100644
index 0000000000..07662f9234
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\205\330\262\330\247\333\214\330\247.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#_مزایا"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\205\330\262\330\247\333\214\330\247_2.html" "b/content/book/fa/v2/ch00/_\331\205\330\262\330\247\333\214\330\247_2.html"
new file mode 100644
index 0000000000..3657dc45f5
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\205\330\262\330\247\333\214\330\247_2.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#_مزایا_2"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\205\330\262\330\247\333\214\330\247_3.html" "b/content/book/fa/v2/ch00/_\331\205\330\262\330\247\333\214\330\247_3.html"
new file mode 100644
index 0000000000..29bcca0c46
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\205\330\262\330\247\333\214\330\247_3.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#_مزایا_3"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\205\330\262\330\247\333\214\330\247_4.html" "b/content/book/fa/v2/ch00/_\331\205\330\262\330\247\333\214\330\247_4.html"
new file mode 100644
index 0000000000..e84838ec8b
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\205\330\262\330\247\333\214\330\247_4.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#_مزایا_4"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\205\330\271\330\247\333\214\330\250.html" "b/content/book/fa/v2/ch00/_\331\205\330\271\330\247\333\214\330\250.html"
new file mode 100644
index 0000000000..ea01c887b0
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\205\330\271\330\247\333\214\330\250.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#_معایب"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\205\330\271\330\247\333\214\330\250_2.html" "b/content/book/fa/v2/ch00/_\331\205\330\271\330\247\333\214\330\250_2.html"
new file mode 100644
index 0000000000..18795b1d22
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\205\330\271\330\247\333\214\330\250_2.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#_معایب_2"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\205\330\271\330\247\333\214\330\250_3.html" "b/content/book/fa/v2/ch00/_\331\205\330\271\330\247\333\214\330\250_3.html"
new file mode 100644
index 0000000000..e5411513cc
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\205\330\271\330\247\333\214\330\250_3.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#_معایب_3"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\205\330\271\330\247\333\214\330\250_4.html" "b/content/book/fa/v2/ch00/_\331\205\330\271\330\247\333\214\330\250_4.html"
new file mode 100644
index 0000000000..c2d6bdf8f3
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\205\330\271\330\247\333\214\330\250_4.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#_معایب_4"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\206\330\265\330\250.html" "b/content/book/fa/v2/ch00/_\331\206\330\265\330\250.html"
new file mode 100644
index 0000000000..d2db97997f
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\206\330\265\330\250.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گیتلب#_نصب"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\206\330\265\330\250_\330\247\330\262_\330\263\331\210\330\261\330\263.html" "b/content/book/fa/v2/ch00/_\331\206\330\265\330\250_\330\247\330\262_\330\263\331\210\330\261\330\263.html"
new file mode 100644
index 0000000000..65168e470c
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\206\330\265\330\250_\330\247\330\262_\330\263\331\210\330\261\330\263.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-نصب-گیت#_نصب_از_سورس"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\206\330\265\330\250_\330\250\330\261_\330\261\331\210\333\214_\331\204\333\214\331\206\331\210\332\251\330\263.html" "b/content/book/fa/v2/ch00/_\331\206\330\265\330\250_\330\250\330\261_\330\261\331\210\333\214_\331\204\333\214\331\206\331\210\332\251\330\263.html"
new file mode 100644
index 0000000000..6b6357619c
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\206\330\265\330\250_\330\250\330\261_\330\261\331\210\333\214_\331\204\333\214\331\206\331\210\332\251\330\263.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-نصب-گیت#_نصب_بر_روی_لینوکس"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\206\330\265\330\250_\330\261\331\210\333\214_\331\205\332\251.html" "b/content/book/fa/v2/ch00/_\331\206\330\265\330\250_\330\261\331\210\333\214_\331\205\332\251.html"
new file mode 100644
index 0000000000..2dd108aa27
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\206\330\265\330\250_\330\261\331\210\333\214_\331\205\332\251.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-نصب-گیت#_نصب_روی_مک"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\206\330\265\330\250_\330\261\331\210\333\214_\331\210\333\214\331\206\330\257\331\210\330\262.html" "b/content/book/fa/v2/ch00/_\331\206\330\265\330\250_\330\261\331\210\333\214_\331\210\333\214\331\206\330\257\331\210\330\262.html"
new file mode 100644
index 0000000000..0a0826fb12
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\206\330\265\330\250_\330\261\331\210\333\214_\331\210\333\214\331\206\330\257\331\210\330\262.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-نصب-گیت#_نصب_روی_ویندوز"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\206\330\265\330\250_\332\257\333\214\330\252.html" "b/content/book/fa/v2/ch00/_\331\206\330\265\330\250_\332\257\333\214\330\252.html"
new file mode 100644
index 0000000000..870c811b74
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\206\330\265\330\250_\332\257\333\214\330\252.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-نصب-گیت#_نصب_گیت"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\206\331\205\330\247\333\214\330\264_\330\261\333\214\331\205\331\210\330\252\331\207\330\247.html" "b/content/book/fa/v2/ch00/_\331\206\331\205\330\247\333\214\330\264_\330\261\333\214\331\205\331\210\330\252\331\207\330\247.html"
new file mode 100644
index 0000000000..c66b248f32
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\206\331\205\330\247\333\214\330\264_\330\261\333\214\331\205\331\210\330\252\331\207\330\247.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-کار-با-ریموتها#_نمایش_ریموتها"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\206\332\257\331\207\330\257\330\247\330\261\333\214_\333\214\332\251_\331\276\330\261\331\210\332\230\331\207.html" "b/content/book/fa/v2/ch00/_\331\206\332\257\331\207\330\257\330\247\330\261\333\214_\333\214\332\251_\331\276\330\261\331\210\332\230\331\207.html"
new file mode 100644
index 0000000000..b504c5a77b
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\206\332\257\331\207\330\257\330\247\330\261\333\214_\333\214\332\251_\331\276\330\261\331\210\332\230\331\207.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_نگهداری_یک_پروژه"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\207\331\210\333\214\330\252_\330\264\331\205\330\247.html" "b/content/book/fa/v2/ch00/_\331\207\331\210\333\214\330\252_\330\264\331\205\330\247.html"
new file mode 100644
index 0000000000..453e241a2c
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\207\331\210\333\214\330\252_\330\264\331\205\330\247.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-اولین-راهاندازی-گیت#_هویت_شما"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\210\330\266\330\271\333\214\330\252\331\207\330\247\333\214_\332\251\331\210\330\252\330\247\331\207.html" "b/content/book/fa/v2/ch00/_\331\210\330\266\330\271\333\214\330\252\331\207\330\247\333\214_\332\251\331\210\330\252\330\247\331\207.html"
new file mode 100644
index 0000000000..d023636ff7
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\210\330\266\330\271\333\214\330\252\331\207\330\247\333\214_\332\251\331\210\330\252\330\247\331\207.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-ثبت-تغییرات-در-مخزن#_وضعیتهای_کوتاه"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\276\330\261\331\210\330\252\332\251\331\204_ssh.html" "b/content/book/fa/v2/ch00/_\331\276\330\261\331\210\330\252\332\251\331\204_ssh.html"
new file mode 100644
index 0000000000..4bec93911c
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\276\330\261\331\210\330\252\332\251\331\204_ssh.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#_پروتکل_ssh"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\276\330\261\331\210\330\252\332\251\331\204_\331\205\330\255\331\204\333\214.html" "b/content/book/fa/v2/ch00/_\331\276\330\261\331\210\330\252\332\251\331\204_\331\205\330\255\331\204\333\214.html"
new file mode 100644
index 0000000000..a39534e55a
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\276\330\261\331\210\330\252\332\251\331\204_\331\205\330\255\331\204\333\214.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#_پروتکل_محلی"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\276\330\261\331\210\330\252\332\251\331\204_\332\257\333\214\330\252.html" "b/content/book/fa/v2/ch00/_\331\276\330\261\331\210\330\252\332\251\331\204_\332\257\333\214\330\252.html"
new file mode 100644
index 0000000000..3eb504c1df
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\276\330\261\331\210\330\252\332\251\331\204_\332\257\333\214\330\252.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#_پروتکل_گیت"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\276\330\261\331\210\330\252\332\251\331\204\331\207\330\247.html" "b/content/book/fa/v2/ch00/_\331\276\330\261\331\210\330\252\332\251\331\204\331\207\330\247.html"
new file mode 100644
index 0000000000..bb4e44d76d
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\276\330\261\331\210\330\252\332\251\331\204\331\207\330\247.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#_پروتکلها"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\276\330\261\331\210\330\252\332\251\331\204\331\207\330\247\333\214_http.html" "b/content/book/fa/v2/ch00/_\331\276\330\261\331\210\330\252\332\251\331\204\331\207\330\247\333\214_http.html"
new file mode 100644
index 0000000000..d4fc35eb4c
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\276\330\261\331\210\330\252\332\251\331\204\331\207\330\247\333\214_http.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#_پروتکلهای_http"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\276\330\261\331\210\332\230\331\207\331\207\330\247.html" "b/content/book/fa/v2/ch00/_\331\276\330\261\331\210\332\230\331\207\331\207\330\247.html"
new file mode 100644
index 0000000000..b37df2f1c2
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\276\330\261\331\210\332\230\331\207\331\207\330\247.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گیتلب#_پروژهها"
+---
diff --git "a/content/book/fa/v2/ch00/_\331\276\331\210\331\204_\332\251\330\261\330\257\331\206.html" "b/content/book/fa/v2/ch00/_\331\276\331\210\331\204_\332\251\330\261\330\257\331\206.html"
new file mode 100644
index 0000000000..0245224272
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\331\276\331\210\331\204_\332\251\330\261\330\257\331\206.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-شاخههای-ریموت#_پول_کردن"
+---
diff --git "a/content/book/fa/v2/ch00/_\332\206\332\251\330\247\331\210\330\252_\332\251\330\261\330\257\331\206_\330\250\330\261\332\206\330\263\330\250\331\207\330\247.html" "b/content/book/fa/v2/ch00/_\332\206\332\251\330\247\331\210\330\252_\332\251\330\261\330\257\331\206_\330\250\330\261\332\206\330\263\330\250\331\207\330\247.html"
new file mode 100644
index 0000000000..5faeb7ce81
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\332\206\332\251\330\247\331\210\330\252_\332\251\330\261\330\257\331\206_\330\250\330\261\332\206\330\263\330\250\331\207\330\247.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-برچسبگذاری#_چکاوت_کردن_برچسبها"
+---
diff --git "a/content/book/fa/v2/ch00/_\332\251\330\247\330\261_\330\257\330\261_\330\264\330\247\330\256\331\207\331\207\330\247\333\214_\331\205\331\210\330\266\331\210\330\271\333\214.html" "b/content/book/fa/v2/ch00/_\332\251\330\247\330\261_\330\257\330\261_\330\264\330\247\330\256\331\207\331\207\330\247\333\214_\331\205\331\210\330\266\331\210\330\271\333\214.html"
new file mode 100644
index 0000000000..e8de043289
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\332\251\330\247\330\261_\330\257\330\261_\330\264\330\247\330\256\331\207\331\207\330\247\333\214_\331\205\331\210\330\266\331\210\330\271\333\214.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#_کار_در_شاخههای_موضوعی"
+---
diff --git "a/content/book/fa/v2/ch00/_\332\251\330\247\330\261\330\250\330\261\330\247\331\206.html" "b/content/book/fa/v2/ch00/_\332\251\330\247\330\261\330\250\330\261\330\247\331\206.html"
new file mode 100644
index 0000000000..66d2ca017f
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\332\251\330\247\330\261\330\250\330\261\330\247\331\206.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گیتلب#_کاربران"
+---
diff --git "a/content/book/fa/v2/ch00/_\332\251\330\247\330\261\332\251\330\261\330\257\331\206_\330\250\330\247_\333\214\332\251\330\257\333\214\332\257\330\261.html" "b/content/book/fa/v2/ch00/_\332\251\330\247\330\261\332\251\330\261\330\257\331\206_\330\250\330\247_\333\214\332\251\330\257\333\214\332\257\330\261.html"
new file mode 100644
index 0000000000..32c0a5b4cd
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\332\251\330\247\330\261\332\251\330\261\330\257\331\206_\330\250\330\247_\333\214\332\251\330\257\333\214\332\257\330\261.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گیتلب#_کارکردن_با_یکدیگر"
+---
diff --git "a/content/book/fa/v2/ch00/_\332\257\330\260\330\261_\330\247\330\262_\330\247\330\263\330\252\333\214\330\254.html" "b/content/book/fa/v2/ch00/_\332\257\330\260\330\261_\330\247\330\262_\330\247\330\263\330\252\333\214\330\254.html"
new file mode 100644
index 0000000000..1a61b3c769
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\332\257\330\260\330\261_\330\247\330\262_\330\247\330\263\330\252\333\214\330\254.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-ثبت-تغییرات-در-مخزن#_گذر_از_استیج"
+---
diff --git "a/content/book/fa/v2/ch00/_\332\257\330\262\333\214\331\206\331\207\331\207\330\247\333\214_\330\264\330\256\330\265\333\214_\330\253\330\247\331\204\330\253_\331\205\333\214\330\262\330\250\330\247\331\206\333\214_\330\264\330\257\331\207.html" "b/content/book/fa/v2/ch00/_\332\257\330\262\333\214\331\206\331\207\331\207\330\247\333\214_\330\264\330\256\330\265\333\214_\330\253\330\247\331\204\330\253_\331\205\333\214\330\262\330\250\330\247\331\206\333\214_\330\264\330\257\331\207.html"
new file mode 100644
index 0000000000..665e1850b5
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\332\257\330\262\333\214\331\206\331\207\331\207\330\247\333\214_\330\264\330\256\330\265\333\214_\330\253\330\247\331\204\330\253_\331\205\333\214\330\262\330\250\330\247\331\206\333\214_\330\264\330\257\331\207.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گزینههای-شخصی-ثالث-میزبانی-شده#_گزینههای_شخصی_ثالث_میزبانی_شده"
+---
diff --git "a/content/book/fa/v2/ch00/_\332\257\333\214\330\252_\332\206\333\214\330\263\330\252.html" "b/content/book/fa/v2/ch00/_\332\257\333\214\330\252_\332\206\333\214\330\263\330\252.html"
new file mode 100644
index 0000000000..e137aef1e5
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\332\257\333\214\330\252_\332\206\333\214\330\263\330\252.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-گیت-چیست؟#_گیت_چیست"
+---
diff --git "a/content/book/fa/v2/ch00/_\332\257\333\214\330\252_\333\214\332\251\331\276\330\247\330\261\332\206\332\257\333\214_\330\257\330\247\330\261\330\257.html" "b/content/book/fa/v2/ch00/_\332\257\333\214\330\252_\333\214\332\251\331\276\330\247\330\261\332\206\332\257\333\214_\330\257\330\247\330\261\330\257.html"
new file mode 100644
index 0000000000..da35cc8e39
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\332\257\333\214\330\252_\333\214\332\251\331\276\330\247\330\261\332\206\332\257\333\214_\330\257\330\247\330\261\330\257.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-گیت-چیست؟#_گیت_یکپارچگی_دارد"
+---
diff --git "a/content/book/fa/v2/ch00/_\332\257\333\214\330\252\331\204\330\250.html" "b/content/book/fa/v2/ch00/_\332\257\333\214\330\252\331\204\330\250.html"
new file mode 100644
index 0000000000..ed3fb45409
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\332\257\333\214\330\252\331\204\330\250.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گیتلب#_گیتلب"
+---
diff --git "a/content/book/fa/v2/ch00/_\332\257\333\214\330\252\331\210\330\250.html" "b/content/book/fa/v2/ch00/_\332\257\333\214\330\252\331\210\330\250.html"
new file mode 100644
index 0000000000..4072b74d93
--- /dev/null
+++ "b/content/book/fa/v2/ch00/_\332\257\333\214\330\252\331\210\330\250.html"
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گیتوب#_گیتوب"
+---
diff --git a/content/book/fa/v2/ch00/bitnami.html b/content/book/fa/v2/ch00/bitnami.html
new file mode 100644
index 0000000000..a08261198e
--- /dev/null
+++ b/content/book/fa/v2/ch00/bitnami.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گیتلب#bitnami"
+---
diff --git a/content/book/fa/v2/ch00/ch01-getting-started.html b/content/book/fa/v2/ch00/ch01-getting-started.html
new file mode 100644
index 0000000000..4e2ceeddda
--- /dev/null
+++ b/content/book/fa/v2/ch00/ch01-getting-started.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شروع-به-کار-دربارهٔ-کنترل-نسخه#ch01-getting-started"
+---
diff --git a/content/book/fa/v2/ch00/ch02-git-basics-chapter.html b/content/book/fa/v2/ch00/ch02-git-basics-chapter.html
new file mode 100644
index 0000000000..17948ca449
--- /dev/null
+++ b/content/book/fa/v2/ch00/ch02-git-basics-chapter.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-دستیابی-به-یک-مخزن-گیت#ch02-git-basics-chapter"
+---
diff --git a/content/book/fa/v2/ch00/ch03-git-branching.html b/content/book/fa/v2/ch00/ch03-git-branching.html
new file mode 100644
index 0000000000..78514a51e5
--- /dev/null
+++ b/content/book/fa/v2/ch00/ch03-git-branching.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-شاخهها-در-یک-کلمه#ch03-git-branching"
+---
diff --git a/content/book/fa/v2/ch00/ch04-git-on-the-server.html b/content/book/fa/v2/ch00/ch04-git-on-the-server.html
new file mode 100644
index 0000000000..e4dab1b0bd
--- /dev/null
+++ b/content/book/fa/v2/ch00/ch04-git-on-the-server.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-پروتکلها#ch04-git-on-the-server"
+---
diff --git a/content/book/fa/v2/ch00/ch05-distributed-git.html b/content/book/fa/v2/ch00/ch05-distributed-git.html
new file mode 100644
index 0000000000..9ccfbde5f5
--- /dev/null
+++ b/content/book/fa/v2/ch00/ch05-distributed-git.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-روندهای-کاری-توزیعشده#ch05-distributed-git"
+---
diff --git a/content/book/fa/v2/ch00/ch06-github.html b/content/book/fa/v2/ch00/ch06-github.html
new file mode 100644
index 0000000000..6ac3cc8995
--- /dev/null
+++ b/content/book/fa/v2/ch00/ch06-github.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Account-Setup-and-Configuration#ch06-github"
+---
diff --git a/content/book/fa/v2/ch00/ch06-github_flow.html b/content/book/fa/v2/ch00/ch06-github_flow.html
new file mode 100644
index 0000000000..78c9203fbc
--- /dev/null
+++ b/content/book/fa/v2/ch00/ch06-github_flow.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Contributing-to-a-Project#ch06-github_flow"
+---
diff --git a/content/book/fa/v2/ch00/ch06-github_orgs.html b/content/book/fa/v2/ch00/ch06-github_orgs.html
new file mode 100644
index 0000000000..07d7dcb62f
--- /dev/null
+++ b/content/book/fa/v2/ch00/ch06-github_orgs.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/GitHub-Managing-an-organization#ch06-github_orgs"
+---
diff --git a/content/book/fa/v2/ch00/ch07-git-tools.html b/content/book/fa/v2/ch00/ch07-git-tools.html
new file mode 100644
index 0000000000..d95ae06b70
--- /dev/null
+++ b/content/book/fa/v2/ch00/ch07-git-tools.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Revision-Selection#ch07-git-tools"
+---
diff --git a/content/book/fa/v2/ch00/ch08-customizing-git.html b/content/book/fa/v2/ch00/ch08-customizing-git.html
new file mode 100644
index 0000000000..38f2544bc4
--- /dev/null
+++ b/content/book/fa/v2/ch00/ch08-customizing-git.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Configuration#ch08-customizing-git"
+---
diff --git a/content/book/fa/v2/ch00/ch09-git-and-other-systems.html b/content/book/fa/v2/ch00/ch09-git-and-other-systems.html
new file mode 100644
index 0000000000..83b1d0dd0a
--- /dev/null
+++ b/content/book/fa/v2/ch00/ch09-git-and-other-systems.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-and-Other-Systems-Git-as-a-Client#ch09-git-and-other-systems"
+---
diff --git a/content/book/fa/v2/ch00/ch10-git-internals.html b/content/book/fa/v2/ch00/ch10-git-internals.html
new file mode 100644
index 0000000000..9a659d573d
--- /dev/null
+++ b/content/book/fa/v2/ch00/ch10-git-internals.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Plumbing-and-Porcelain#ch10-git-internals"
+---
diff --git a/content/book/fa/v2/ch00/divergent_history.html b/content/book/fa/v2/ch00/divergent_history.html
new file mode 100644
index 0000000000..daca74d6cf
--- /dev/null
+++ b/content/book/fa/v2/ch00/divergent_history.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-شاخهها-در-یک-کلمه#divergent_history"
+---
diff --git a/content/book/fa/v2/ch00/double_dot.html b/content/book/fa/v2/ch00/double_dot.html
new file mode 100644
index 0000000000..13f6c158ab
--- /dev/null
+++ b/content/book/fa/v2/ch00/double_dot.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Revision-Selection#double_dot"
+---
diff --git a/content/book/fa/v2/ch00/filters_a.html b/content/book/fa/v2/ch00/filters_a.html
new file mode 100644
index 0000000000..13acdb9f62
--- /dev/null
+++ b/content/book/fa/v2/ch00/filters_a.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Attributes#filters_a"
+---
diff --git a/content/book/fa/v2/ch00/filters_b.html b/content/book/fa/v2/ch00/filters_b.html
new file mode 100644
index 0000000000..3b0d99f836
--- /dev/null
+++ b/content/book/fa/v2/ch00/filters_b.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Customizing-Git-Git-Attributes#filters_b"
+---
diff --git a/content/book/fa/v2/ch00/gitlab_groups.html b/content/book/fa/v2/ch00/gitlab_groups.html
new file mode 100644
index 0000000000..0ef55d6c36
--- /dev/null
+++ b/content/book/fa/v2/ch00/gitlab_groups.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گیتلب#gitlab_groups"
+---
diff --git a/content/book/fa/v2/ch00/gitlab_menu.html b/content/book/fa/v2/ch00/gitlab_menu.html
new file mode 100644
index 0000000000..4701a5a7db
--- /dev/null
+++ b/content/book/fa/v2/ch00/gitlab_menu.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گیتلب#gitlab_menu"
+---
diff --git a/content/book/fa/v2/ch00/gitlab_users.html b/content/book/fa/v2/ch00/gitlab_users.html
new file mode 100644
index 0000000000..74d0c812e2
--- /dev/null
+++ b/content/book/fa/v2/ch00/gitlab_users.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گیتلب#gitlab_users"
+---
diff --git a/content/book/fa/v2/ch00/gitweb.html b/content/book/fa/v2/ch00/gitweb.html
new file mode 100644
index 0000000000..60933df645
--- /dev/null
+++ b/content/book/fa/v2/ch00/gitweb.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-روی-سرور-گیتوب#gitweb"
+---
diff --git a/content/book/fa/v2/ch00/limit_options.html b/content/book/fa/v2/ch00/limit_options.html
new file mode 100644
index 0000000000..3f253ad1f3
--- /dev/null
+++ b/content/book/fa/v2/ch00/limit_options.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-دیدن-تاریخچهٔ-کامیتها#limit_options"
+---
diff --git a/content/book/fa/v2/ch00/log_options.html b/content/book/fa/v2/ch00/log_options.html
new file mode 100644
index 0000000000..f94d8856ff
--- /dev/null
+++ b/content/book/fa/v2/ch00/log_options.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-دیدن-تاریخچهٔ-کامیتها#log_options"
+---
diff --git a/content/book/fa/v2/ch00/lrbranch_b.html b/content/book/fa/v2/ch00/lrbranch_b.html
new file mode 100644
index 0000000000..034951131a
--- /dev/null
+++ b/content/book/fa/v2/ch00/lrbranch_b.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-روند-کاری-شاخهسازی#lrbranch_b"
+---
diff --git a/content/book/fa/v2/ch00/merwf_a.html b/content/book/fa/v2/ch00/merwf_a.html
new file mode 100644
index 0000000000..e8e3f541d9
--- /dev/null
+++ b/content/book/fa/v2/ch00/merwf_a.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#merwf_a"
+---
diff --git a/content/book/fa/v2/ch00/merwf_b.html b/content/book/fa/v2/ch00/merwf_b.html
new file mode 100644
index 0000000000..6c34634b65
--- /dev/null
+++ b/content/book/fa/v2/ch00/merwf_b.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#merwf_b"
+---
diff --git a/content/book/fa/v2/ch00/merwf_c.html b/content/book/fa/v2/ch00/merwf_c.html
new file mode 100644
index 0000000000..daf924d417
--- /dev/null
+++ b/content/book/fa/v2/ch00/merwf_c.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#merwf_c"
+---
diff --git a/content/book/fa/v2/ch00/merwf_d.html b/content/book/fa/v2/ch00/merwf_d.html
new file mode 100644
index 0000000000..c81cbcb5b6
--- /dev/null
+++ b/content/book/fa/v2/ch00/merwf_d.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#merwf_d"
+---
diff --git a/content/book/fa/v2/ch00/merwf_e.html b/content/book/fa/v2/ch00/merwf_e.html
new file mode 100644
index 0000000000..e8a8a70a21
--- /dev/null
+++ b/content/book/fa/v2/ch00/merwf_e.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#merwf_e"
+---
diff --git a/content/book/fa/v2/ch00/merwf_f.html b/content/book/fa/v2/ch00/merwf_f.html
new file mode 100644
index 0000000000..6ac3c0e4b7
--- /dev/null
+++ b/content/book/fa/v2/ch00/merwf_f.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-نگهداری-یک-پروژه#merwf_f"
+---
diff --git a/content/book/fa/v2/ch00/oh_my_zsh_git.html b/content/book/fa/v2/ch00/oh_my_zsh_git.html
new file mode 100644
index 0000000000..7bbf42bc3f
--- /dev/null
+++ b/content/book/fa/v2/ch00/oh_my_zsh_git.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Git-in-Zsh#oh_my_zsh_git"
+---
diff --git a/content/book/fa/v2/ch00/pretty_format.html b/content/book/fa/v2/ch00/pretty_format.html
new file mode 100644
index 0000000000..dbbbd94d25
--- /dev/null
+++ b/content/book/fa/v2/ch00/pretty_format.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/مقدمات-گیت-دیدن-تاریخچهٔ-کامیتها#pretty_format"
+---
diff --git a/content/book/fa/v2/ch00/psp_b.html b/content/book/fa/v2/ch00/psp_b.html
new file mode 100644
index 0000000000..2a95a2a049
--- /dev/null
+++ b/content/book/fa/v2/ch00/psp_b.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-مشارکت-در-یک-پروژه#psp_b"
+---
diff --git a/content/book/fa/v2/ch00/rbdiag_e.html b/content/book/fa/v2/ch00/rbdiag_e.html
new file mode 100644
index 0000000000..3b9ec10071
--- /dev/null
+++ b/content/book/fa/v2/ch00/rbdiag_e.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-ریبیسکردن#rbdiag_e"
+---
diff --git a/content/book/fa/v2/ch00/rbdiag_g.html b/content/book/fa/v2/ch00/rbdiag_g.html
new file mode 100644
index 0000000000..8e967b4c28
--- /dev/null
+++ b/content/book/fa/v2/ch00/rbdiag_g.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-ریبیسکردن#rbdiag_g"
+---
diff --git a/content/book/fa/v2/ch00/rbdiag_h.html b/content/book/fa/v2/ch00/rbdiag_h.html
new file mode 100644
index 0000000000..d858280e54
--- /dev/null
+++ b/content/book/fa/v2/ch00/rbdiag_h.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-ریبیسکردن#rbdiag_h"
+---
diff --git a/content/book/fa/v2/ch00/rbdiag_i.html b/content/book/fa/v2/ch00/rbdiag_i.html
new file mode 100644
index 0000000000..4e2071e266
--- /dev/null
+++ b/content/book/fa/v2/ch00/rbdiag_i.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-ریبیسکردن#rbdiag_i"
+---
diff --git a/content/book/fa/v2/ch00/rebasing-merging-example.html b/content/book/fa/v2/ch00/rebasing-merging-example.html
new file mode 100644
index 0000000000..fdd73896c7
--- /dev/null
+++ b/content/book/fa/v2/ch00/rebasing-merging-example.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/شاخهسازی-در-گیت-ریبیسکردن#rebasing-merging-example"
+---
diff --git a/content/book/fa/v2/ch00/ref_rerere.html b/content/book/fa/v2/ch00/ref_rerere.html
new file mode 100644
index 0000000000..e00eecfd7a
--- /dev/null
+++ b/content/book/fa/v2/ch00/ref_rerere.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Tools-Rerere#ref_rerere"
+---
diff --git a/content/book/fa/v2/ch00/ref_the_ref.html b/content/book/fa/v2/ch00/ref_the_ref.html
new file mode 100644
index 0000000000..abea210658
--- /dev/null
+++ b/content/book/fa/v2/ch00/ref_the_ref.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/Git-Internals-Git-References#ref_the_ref"
+---
diff --git a/content/book/fa/v2/ch00/vs_home.html b/content/book/fa/v2/ch00/vs_home.html
new file mode 100644
index 0000000000..a375eb5139
--- /dev/null
+++ b/content/book/fa/v2/ch00/vs_home.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/پیوست-A:-Git-in-Other-Environments-Git-in-Visual-Studio#vs_home"
+---
diff --git a/content/book/fa/v2/ch00/wfdiag_b.html b/content/book/fa/v2/ch00/wfdiag_b.html
new file mode 100644
index 0000000000..2b5c8ba35e
--- /dev/null
+++ b/content/book/fa/v2/ch00/wfdiag_b.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-روندهای-کاری-توزیعشده#wfdiag_b"
+---
diff --git a/content/book/fa/v2/ch00/wfdiag_c.html b/content/book/fa/v2/ch00/wfdiag_c.html
new file mode 100644
index 0000000000..82af67b195
--- /dev/null
+++ b/content/book/fa/v2/ch00/wfdiag_c.html
@@ -0,0 +1,3 @@
+---
+redirect_to: "book/fa/v2/گیت-توزیعشده-روندهای-کاری-توزیعشده#wfdiag_c"
+---
diff --git "a/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\261\331\210\331\206\330\257-\332\251\330\247\330\261\333\214-\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214.html" "b/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\261\331\210\331\206\330\257-\332\251\330\247\330\261\333\214-\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214.html"
index 3927137fef..576f68de72 100644
--- "a/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\261\331\210\331\206\330\257-\332\251\330\247\330\261\333\214-\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214.html"
+++ "b/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\261\331\210\331\206\330\257-\332\251\330\247\330\261\333\214-\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214.html"
@@ -41,7 +41,7 @@ شاخههای با قدمت
-
}}" alt="A linear view of progressive-stability branching.">
+
}}" alt="A linear view of progressive-stability branching.">
نمودار 26. دیدگاهی خطی به شاخهسازی ثبات-مترقی
@@ -50,7 +50,7 @@ شاخههای با قدمت
-
}}" alt="A ``silo'' view of progressive-stability branching.">
+
}}" alt="A ``silo'' view of progressive-stability branching.">
نمودار 27. دیدگاهی «سیلو» محور به شاخهسازی ثبات-مترقی
@@ -83,7 +83,7 @@ شاخههای موضوعی
-
}}" alt="Multiple topic branches.">
+
}}" alt="Multiple topic branches.">
نمودار 28. چندین برنچ موضوعی
@@ -94,13 +94,13 @@ شاخههای موضوعی
-
}}" alt="History after merging `dumbidea` and `iss91v2`.">
+
}}" alt="History after merging `dumbidea` and `iss91v2`.">
نمودار 29. تاریخچه پس از ادغام dumbidea
و iss91v2
-
در گیت توزیعشده به جزئیات بیشتر دربارهٔ روندهای کاری متفاوت برای پروژه گیتتان میپردازیم،
+
در }}">گیت توزیعشده به جزئیات بیشتر دربارهٔ روندهای کاری متفاوت برای پروژه گیتتان میپردازیم،
بنابراین پیش از اینکه تصمیم بگیرید برای پروژه آینده خود چه ساختار شاخهسازی میخواهید، مطمئن باشید که آن فصل را مطالعه کردهاید.
diff --git "a/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\261\333\214\330\250\333\214\330\263\342\200\214\332\251\330\261\330\257\331\206.html" "b/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\261\333\214\330\250\333\214\330\263\342\200\214\332\251\330\261\330\257\331\206.html"
index 5843ccea1e..928bcfc04d 100644
--- "a/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\261\333\214\330\250\333\214\330\263\342\200\214\332\251\330\261\330\257\331\206.html"
+++ "b/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\261\333\214\330\250\333\214\330\263\342\200\214\332\251\330\261\330\257\331\206.html"
@@ -26,11 +26,11 @@
ریبیسکردن
ریبیس مقدماتی
-
اگر به یک مثال قدیمیتر از ادغام مقدماتی بازگردیم، میبینید که کار شما و کامیتهای که کردهاید دوشاخه شده است.
+
اگر به یک مثال قدیمیتر از }}">ادغام مقدماتی بازگردیم، میبینید که کار شما و کامیتهای که کردهاید دوشاخه شده است.
-
}}" alt="Simple divergent history.">
+
}}" alt="Simple divergent history.">
نمودار 35. تاریخچهٔ دوشاخهٔ ساده
@@ -40,7 +40,7 @@
ریبیس مقدماتی
-
}}" alt="Merging to integrate diverged work history.">
+
}}" alt="Merging to integrate diverged work history.">
نمودار 36. مرج کردن جهت یکپارچهسازی تاریخچهٔ کار دوشاخه
@@ -66,7 +66,7 @@
ریبیس مقدماتی
-
}}" alt="Rebasing the change introduced in `C4` onto `C3`.">
+
}}" alt="Rebasing the change introduced in `C4` onto `C3`.">
نمودار 37. ریبیس کردن تغییرات معرفی شده در C4
به روی C3
@@ -82,13 +82,13 @@
ریبیس مقدماتی
-
}}" alt="Fast-forwarding the `master` branch.">
+
}}" alt="Fast-forwarding the `master` branch.">
نمودار 38. فست-فوروارد کردن برنچ master
-
حال اسنپشاتی که C4'
به آن اشاره میکند دقیقاً به مانند همانی است که که سابقاً توسط C5
در مثال مرج به آن اشاره میشد.
+
حال اسنپشاتی که C4'
به آن اشاره میکند دقیقاً به مانند همانی است که که سابقاً توسط C5
در }}">مثال مرج به آن اشاره میشد.
تفاوتی در محصول نهایی این یکپارچهسازی وجود ندارد اما ریبیسکردن تاریخچهای تمیزتر را خلق میکند.
اگر لاگ یک برنچ ریبیسشده را مطالعه کنید، به نظر یک تاریخچهٔ خطی است: طوری نمایش داده میشود که انگار همه چیز در طی یک فرآیند سری اتفاق افتاده حتی اگر در حقیقت به طور موازی انجام شده است.
@@ -101,14 +101,14 @@ ریبیس مقدماتی
ریبیسهای جذابتر
-
}}" alt="A history with a topic branch off another topic branch.">
+
}}" alt="A history with a topic branch off another topic branch.">
نمودار 39. تاریخچهای با یک برنچ موضوعی که از برنچ موضوعی دیگر شروع میشود
@@ -128,12 +128,12 @@ ریبیسهای جذابتر
-
}}" alt="Rebasing a topic branch off another topic branch.">
+
}}" alt="Rebasing a topic branch off another topic branch.">
نمودار 40. ریبیس کردن یک برنچ موضوعی از یک برنچ موضوعی دیگر
@@ -143,7 +143,7 @@
ریبیسهای جذابتر
-
}}" alt="Fast-forwarding your `master` branch to include the client branch changes.">
+
}}" alt="Fast-forwarding your `master` branch to include the client branch changes.">
نمودار 41. فست-فوروارد کردن برنچ master
برای اضافه کردن تغییرات برنچ کلاینت
@@ -158,11 +158,11 @@
ریبیسهای جذابتر
-
}}" alt="Rebasing your server branch on top of your `master` branch.">
+
}}" alt="Rebasing your server branch on top of your `master` branch.">
نمودار 42. ریبیس کردن برنچ سرورتان روی برنچ master
@@ -177,7 +177,7 @@
ریبیسهای جذابتر
-
شما میتوانید برنچهای client
و server
را حذف کنید چراکه تمام کارها تعبیه شدهاند و شما دیگر به آنها احتیاجی ندارید، در نتیجه تمام تاریخچه شما مشابه تاریخچهٔ کامیت نهایی میشود:
+
شما میتوانید برنچهای client
و server
را حذف کنید چراکه تمام کارها تعبیه شدهاند و شما دیگر به آنها احتیاجی ندارید، در نتیجه تمام تاریخچه شما مشابه }}">تاریخچهٔ کامیت نهایی میشود:
@@ -187,7 +187,7 @@
ریبیسهای جذابتر
-
}}" alt="Final commit history.">
+
}}" alt="Final commit history.">
نمودار 43. تاریخچهٔ کامیت نهایی
@@ -217,7 +217,7 @@
خطرات ریبیسکردن
-
}}" alt="Clone a repository, and base some work on it.">
+
}}" alt="Clone a repository, and base some work on it.">
نمودار 44. یک مخزن را کلون میکنید و کمی کار روی آن انجام میدهید
@@ -227,7 +227,7 @@ خطرات ریبیسکردن
-
}}" alt="Fetch more commits, and merge them into your work.">
+
}}" alt="Fetch more commits, and merge them into your work.">
نمودار 45. کامیتهای بیشتری را فچ میکنید و آنها را با کار خود مرج میکنید
@@ -237,7 +237,7 @@ خطرات ریبیسکردن
-
}}" alt="Someone pushes rebased commits, abandoning commits you’ve based your work on.">
+
}}" alt="Someone pushes rebased commits, abandoning commits you’ve based your work on.">
نمودار 46. شخصی کامیتهای ریبیسشده را پوش میکند، کامیتهایی که شما کار خود را روی آنها بنا گذاشتهاید را پشت سر میگذارد
@@ -247,7 +247,7 @@ خطرات ریبیسکردن
-
}}" alt="You merge in the same work again into a new merge commit.">
+
}}" alt="You merge in the same work again into a new merge commit.">
نمودار 47. شما همان کارها را دوباره مرج میکنید و یک مرج کامیت جدید میسازید
@@ -271,7 +271,7 @@ وقتی ریبیس میکنید ریبیس کنید<
اگر کاری که بازنویسی شده را پول کردهاید و آنرا به روی کامیتهای جدید همکارتان ریبیس کنید، اکثر مواقع گیت متوجه میشود که چه کاری منحصر به شماست و آنها را دوباره به بالای برنچ جدید اعمال میکند.
@@ -290,11 +290,11 @@ وقتی ریبیس میکنید ریبیس کنید<
-
}}" alt="Rebase on top of force-pushed rebase work.">
+
}}" alt="Rebase on top of force-pushed rebase work.">
نمودار 48. به روی یک کار ریبیس و فورس پوش شده ریبیس میکنید
diff --git "a/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\331\210-\330\247\330\257\330\272\330\247\331\205-\331\205\331\202\330\257\331\205\330\247\330\252\333\214.html" "b/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\331\210-\330\247\330\257\330\272\330\247\331\205-\331\205\331\202\330\257\331\205\330\247\330\252\333\214.html"
index dad9a83467..ff8f825c39 100644
--- "a/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\331\210-\330\247\330\257\330\272\330\247\331\205-\331\205\331\202\330\257\331\205\330\247\330\252\333\214.html"
+++ "b/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\331\210-\330\247\330\257\330\272\330\247\331\205-\331\205\331\202\330\257\331\205\330\247\330\252\333\214.html"
@@ -63,7 +63,7 @@ شاخهسازی مقدماتی
-
}}" alt="A simple commit history.">
+
}}" alt="A simple commit history.">
نمودار 18. یک تاریخچهٔ کامیت ساده
@@ -88,7 +88,7 @@ شاخهسازی مقدماتی
-
}}" alt="Creating a new branch pointer.">
+
}}" alt="Creating a new branch pointer.">
نمودار 19. ساختن یک نشانگر برنچ جدید
@@ -104,7 +104,7 @@ شاخهسازی مقدماتی
-
}}" alt="The `iss53` branch has moved forward with your work.">
+
}}" alt="The `iss53` branch has moved forward with your work.">
نمودار 20. برنچ iss53
با کار شما به جلو رفته است
@@ -117,7 +117,7 @@ شاخهسازی مقدماتی
اگرچه قبل از اینکه آن کار را انجام دهید باید دقت کنید که اگر پوشه کاری یا استیج شما تغییرات کامیتنشدهای دارد که باعث ایجاد تداخل (Conflict) در
برنچی که میخواهید به آن چکاوت کنید میشود، گیت به شما اجازهٔ تعویض برنچ نمیدهد.
همیشه بهتر است قبل از تعویض برنچ، پوشه کاری داشته باشید.
-راههای متفاوتی برای انجام این تمیزکاری وجود دارد (من جمله استش (Stash) و امند کردن کامیت) که در Stashing and Cleaning به آن خواهیم پرداخت.
+راههای متفاوتی برای انجام این تمیزکاری وجود دارد (من جمله استش (Stash) و امند کردن کامیت) که در }}">Stashing and Cleaning به آن خواهیم پرداخت.
فعلاً بیاید فرض کنیم که همه تغییرات کامیت شدهاند، بنابراین میتوانید به برنچ master
خود انتقال پیدا کنید:
@@ -147,7 +147,7 @@
شاخهسازی مقدماتی
-
}}" alt="Hotfix branch based on `master`.">
+
}}" alt="Hotfix branch based on `master`.">
نمودار 21. برنچ هاتفیکس در ادامهٔ master
@@ -177,7 +177,7 @@
شاخهسازی مقدماتی
-
}}" alt="`master` is fast-forwarded to `hotfix`.">
+
}}" alt="`master` is fast-forwarded to `hotfix`.">
نمودار 22. برنچ master
به hotfix
فست-فوروارد شد.
@@ -207,7 +207,7 @@ شاخهسازی مقدماتی
-
}}" alt="Work continues on `iss53`.">
+
}}" alt="Work continues on `iss53`.">
نمودار 23. کار روی iss53
ادامه پیدا میکند
@@ -243,7 +243,7 @@ ادغام مقدماتی
-
}}" alt="Three snapshots used in a typical merge.">
+
}}" alt="Three snapshots used in a typical merge.">
نمودار 24. سه اسنپشات مورد استفاده در یک مرج معمولی
@@ -253,7 +253,7 @@ ادغام مقدماتی
-
}}" alt="A merge commit.">
+
}}" alt="A merge commit.">
نمودار 25. یک مرج کامیت
@@ -371,7 +371,7 @@ تداخلات ادغام پایه
- اگر به ابزار پیشرفتهتری برای حل تداخلهای خاص دارید، ما به بحث مرجکردن در Advanced Merging بیشتر میپردازیم.
+ اگر به ابزار پیشرفتهتری برای حل تداخلهای خاص دارید، ما به بحث مرجکردن در }}">Advanced Merging بیشتر میپردازیم.
|
diff --git "a/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\264\330\247\330\256\331\207\342\200\214\331\207\330\247-\330\257\330\261-\333\214\332\251-\332\251\331\204\331\205\331\207.html" "b/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\264\330\247\330\256\331\207\342\200\214\331\207\330\247-\330\257\330\261-\333\214\332\251-\332\251\331\204\331\205\331\207.html"
index 9f0c08f0ce..58b4fcb6eb 100644
--- "a/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\264\330\247\330\256\331\207\342\200\214\331\207\330\247-\330\257\330\261-\333\214\332\251-\332\251\331\204\331\205\331\207.html"
+++ "b/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\264\330\247\330\256\331\207\342\200\214\331\207\330\247-\330\257\330\261-\333\214\332\251-\332\251\331\204\331\205\331\207.html"
@@ -30,7 +30,7 @@ شاخهها در یک کلمه
برای اینکه به راستی نحوهٔ شاخهسازی گیت را درک کنید، باید یک قدم به عقب برگردیم و نحوهٔ ثبت اطلاعات گیت را مطالعه کنیم.
-
همانطور که از شروع به کار به یاد دارید، گیت دادهها را به عنوان دستهای از تغییرات یا تفاوتهایی بین فایلها ذخیره نمیکند؛
+
همانطور که از }}">شروع به کار به یاد دارید، گیت دادهها را به عنوان دستهای از تغییرات یا تفاوتهایی بین فایلها ذخیره نمیکند؛
بلکه اطلاعات را به عنوان مجموعهای از اسنپشاتها ذخیره میکند.
@@ -40,7 +40,7 @@
شاخهها در یک کلمه
برای ملموس کردن این موضوع، فرض را بر این بگذاریم که پوشهای حاوی سه فایل داریم و شما همهٔ آنها را استیج و کامیت میکنید.
-استیج کردن فایلهای برای هر کدام از آنها یک چکسام (هش SHA-1 که درشروع به کار ذکر کردیم) محاسبه میکند، آن نسخه از فایل را در مخزن گیت ذخیره میکند،
+استیج کردن فایلهای برای هر کدام از آنها یک چکسام (هش SHA-1 که در}}">شروع به کار ذکر کردیم) محاسبه میکند، آن نسخه از فایل را در مخزن گیت ذخیره میکند،
(گیت از این فایلهای با نام بلاب یاد میکند) و آن چکسام را به استیج اضافه میکند:
@@ -59,7 +59,7 @@
شاخهها در یک کلمه
-
}}" alt="A commit and its tree.">
+
}}" alt="A commit and its tree.">
نمودار 9. یک کامیت و درختش
@@ -68,7 +68,7 @@ شاخهها در یک کلمه
-
}}" alt="Commits and their parents.">
+
}}" alt="Commits and their parents.">
نمودار 10. کامیتها و والدینشان
@@ -96,7 +96,7 @@ شاخهها در یک کلمه
-
}}" alt="A branch and its commit history.">
+
}}" alt="A branch and its commit history.">
نمودار 11. یک برنچ و تاریخچهٔ کامیتهای آن
@@ -119,7 +119,7 @@ ساختن یک شاخه جدید
-
}}" alt="Two branches pointing into the same series of commits.">
+
}}" alt="Two branches pointing into the same series of commits.">
نمودار 12. دو برنچ که به یک دسته از کامیتها اشاره میکنند
@@ -133,7 +133,7 @@ ساختن یک شاخه جدید
-
}}" alt="HEAD pointing to a branch.">
+
}}" alt="HEAD pointing to a branch.">
نمودار 13. هد که به یک برنچ اشاره میکند
@@ -170,7 +170,7 @@ تعویض شاخهها
-
}}" alt="HEAD points to the current branch.">
+
}}" alt="HEAD points to the current branch.">
نمودار 14. هد به برنچ فعلی اشاره میکند
@@ -186,7 +186,7 @@ تعویض شاخهها
-
}}" alt="The HEAD branch moves forward when a commit is made.">
+
}}" alt="The HEAD branch moves forward when a commit is made.">
نمودار 15. هنگامی که کامیتی ساخته میشود برنچ هد به جلو میرود
@@ -225,7 +225,7 @@ تعویض شاخهها
-
}}" alt="HEAD moves when you checkout.">
+
}}" alt="HEAD moves when you checkout.">
نمودار 16. وقتی چکاوت میکنید هد جابهجا میشود
@@ -262,14 +262,14 @@ تعویض شاخهها
-
اکنون تاریخچه پروژه شما دوشاخه شده است (به تاریخچه دوشاخه شده مراجعه کنید).
+
اکنون تاریخچه پروژه شما دوشاخه شده است (به }}">تاریخچه دوشاخه شده مراجعه کنید).
شما یک برنچ ساختید و به آن انتقال پیدا کردید، کمی روی آن کار کردید و سپس به برنچ اصلی خود بازگشتید و آنجا کمی کار متفاوت انجام دادید.
هر دوی آن تغییرات به صورت ایزوله در برنچهای خودشان موجوداند: شما میتوانید بین برنچها جابهجا شوید و هرگاه آماده بودید آنها را با هم مرج کنید.
و جالبتر اینکه همهٔ این کارها را صرفاً با دستورهای branch
، checkout
و commit
انجام دادید.
-
}}" alt="Divergent history.">
+
}}" alt="Divergent history.">
نمودار 17. تاریخچه دوشاخه شده
diff --git "a/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\264\330\247\330\256\331\207\342\200\214\331\207\330\247\333\214-\330\261\333\214\331\205\331\210\330\252.html" "b/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\264\330\247\330\256\331\207\342\200\214\331\207\330\247\333\214-\330\261\333\214\331\205\331\210\330\252.html"
index 841e147e5d..6ce860bf4a 100644
--- "a/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\264\330\247\330\256\331\207\342\200\214\331\207\330\247\333\214-\330\261\333\214\331\205\331\210\330\252.html"
+++ "b/content/book/fa/v2/\330\264\330\247\330\256\331\207\342\200\214\330\263\330\247\330\262\333\214-\330\257\330\261-\332\257\333\214\330\252-\330\264\330\247\330\256\331\207\342\200\214\331\207\330\247\333\214-\330\261\333\214\331\205\331\210\330\252.html"
@@ -62,7 +62,7 @@ شاخههای ریموت
-
}}" alt="Server and local repositories after cloning.">
+
}}" alt="Server and local repositories after cloning.">
نمودار 30. مخازن سرور و محلی بعد از کلون کردن
@@ -72,7 +72,7 @@ شاخههای ریموت
-
}}" alt="Local and remote work can diverge.">
+
}}" alt="Local and remote work can diverge.">
نمودار 31. کارهای روی مخزن محلی و ریموت میتواند دوشاخه شود
@@ -83,7 +83,7 @@ شاخههای ریموت
-
}}" alt="`git fetch` updates your remote references.">
+
}}" alt="`git fetch` updates your remote references.">
نمودار 32. دستور git fetch
برنچهای درپی-ریموتتان را به روز میکند
@@ -91,12 +91,12 @@ شاخههای ریموت
برای نمایش داشتن چند سرور ریموت و اینکه چه برنچ ریموتی در آن پروژههای ریموت در کجا قرار دارد، بیاید فرض کنیم که
شما یک سرور گیت داخلی دیگر دارید که فقط برای توسعه با یکی از اعضای تیم «دور» (Sprint) فعلی شما پاسخگو است.
این سرور در git.team1.ourcompany.com
قرار دارد.
-همانگونه که در مقدمات گیت بررسی شد، میتوانید با git remote add
آنرا به عنوان یک مرجع ریموت جدید به پروژهای که در حال حاضر روی آن کار میکنید اضافه کنید.
+همانگونه که در }}">مقدمات گیت بررسی شد، میتوانید با git remote add
آنرا به عنوان یک مرجع ریموت جدید به پروژهای که در حال حاضر روی آن کار میکنید اضافه کنید.
این ریموت را teamone
بنامید که نام کوتاهی برای URL کامل ریموت است.
-
}}" alt="Adding another server as a remote.">
+
}}" alt="Adding another server as a remote.">
نمودار 33. اضافه کردن سروری جدید به عنوان ریموت
@@ -107,7 +107,7 @@ شاخههای ریموت
-
}}" alt="Remote tracking branch for `teamone/master`.">
+
}}" alt="Remote tracking branch for `teamone/master`.">
نمودار 34. برنچ درپی-ریموت teamone/master
@@ -140,7 +140,7 @@
پوشکردن
این به نوعی یک میانبر است.
گیت به طور خودکار نام برنچ serverfix
را به refs/heads/serverfix:refs/heads/serverfix
گسترش میدهد که به معنی عبارت روبرو است: «برنچ محلی serverfix
من را بگیر و برای بروزرسانی
برنچ serverfix
ریموت آنرا پوش کن.»
-در Git Internals با جزئیات به بخش refs/heads/
میپردازیم، اما به طور کل میتوانید فعلاً آن را اینگونه رها کنید.
+در }}">Git Internals با جزئیات به بخش refs/heads/
میپردازیم، اما به طور کل میتوانید فعلاً آن را اینگونه رها کنید.
همچنین میتوانید git push origin serverfix:serverfix
کنید که همان کار را میکند — میگوید: «serverfix مرا بگیر و آنرا serverfix ریموت کن.»
اگر نمیخواهید روی ریموت serverfix
نامیده شود میتوانید به جای آن، git push origin serverfix:awesomebranch
را برای پوش کردن برنچ serverfix
محلیتان به aweseomebranch
روی پروژه ریموت اجرا کنید.
@@ -161,7 +161,7 @@ پوشکردن
سادهترین راه ذخیرهٔ گواهی در حافظه به مدت چند دقیقه است، که میتوانید به سادگی با اجرای git config --global credential.helper cache
آنرا راهاندازی کنید.
-
برای اطلاعات بیشتر درباره تنظیمات کش کردن گواهیهای مختلف موجود به Credential Storage مراجعه کنید.
+
برای اطلاعات بیشتر درباره تنظیمات کش کردن گواهیهای مختلف موجود به }}">Credential Storage مراجعه کنید.
diff --git "a/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\330\247\331\210\331\204\333\214\331\206-\330\261\330\247\331\207\342\200\214\330\247\331\206\330\257\330\247\330\262\333\214-\332\257\333\214\330\252.html" "b/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\330\247\331\210\331\204\333\214\331\206-\330\261\330\247\331\207\342\200\214\330\247\331\206\330\257\330\247\330\262\333\214-\332\257\333\214\330\252.html"
index 021c227321..31477eb2be 100644
--- "a/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\330\247\331\210\331\204\333\214\331\206-\330\261\330\247\331\207\342\200\214\330\247\331\206\330\257\330\247\330\262\333\214-\332\257\333\214\330\252.html"
+++ "b/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\330\247\331\210\331\204\333\214\331\206-\330\261\330\247\331\207\342\200\214\330\247\331\206\330\257\330\247\330\262\333\214-\332\257\333\214\330\252.html"
@@ -121,7 +121,7 @@ ویرایشگر شما
ویم، ایمکس و نوتپد++ ویرایشگرهای محبوبی هستند که اکثراً توسط کاربران سیستمهای یونیکس-پایه مانند لینوکس و مک و یا حتی یک سیستم ویندوزی استفاده میشوند.
-اگر شما از ادیتور دیگری یا نسخه ۳۲ بیتی استفاده میکنید، لطفاً دستورات مختص به اینکه چگونه ویرایشگر مورد علاقه خود را در گیت راه بنیدازید را از core.editor پیدا کنید.
+اگر شما از ادیتور دیگری یا نسخه ۳۲ بیتی استفاده میکنید، لطفاً دستورات مختص به اینکه چگونه ویرایشگر مورد علاقه خود را در گیت راه بنیدازید را از }}">core.editor پیدا کنید.
|
diff --git "a/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\330\252\330\247\330\261\333\214\330\256\332\206\331\207\331\224-\332\251\331\210\330\252\330\247\331\207\333\214-\330\247\330\262-\332\257\333\214\330\252.html" "b/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\330\252\330\247\330\261\333\214\330\256\332\206\331\207\331\224-\332\251\331\210\330\252\330\247\331\207\333\214-\330\247\330\262-\332\257\333\214\330\252.html"
index 53f71a5f30..b400d27aea 100644
--- "a/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\330\252\330\247\330\261\333\214\330\256\332\206\331\207\331\224-\332\251\331\210\330\252\330\247\331\207\333\214-\330\247\330\262-\332\257\333\214\330\252.html"
+++ "b/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\330\252\330\247\330\261\333\214\330\256\332\206\331\207\331\224-\332\251\331\210\330\252\330\247\331\207\333\214-\330\247\330\262-\332\257\333\214\330\252.html"
@@ -52,6 +52,6 @@ تاریخچهٔ کوتاه
از زمان تولد گیت در سال ۲۰۰۵، این نرمافزار برای ساده بودن و سهولت استفاده تکامل پیدا کرده و به بلوغ رسیده و هنوز این استانداردهای اولیه را حفظ میکند.
-این نرمافزار خارقالعاده سریع، در مواجه با پروژههای بزرگ بسیار بهینه و حاوی سیستم انشعابی باورنکردنی برای توسعه غیرخطی است (مراجعه به شاخهسازی در گیت).
+این نرمافزار خارقالعاده سریع، در مواجه با پروژههای بزرگ بسیار بهینه و حاوی سیستم انشعابی باورنکردنی برای توسعه غیرخطی است (مراجعه به
}}">شاخهسازی در گیت).
\ No newline at end of file
diff --git "a/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\330\257\330\261\330\250\330\247\330\261\331\207\331\224-\332\251\331\206\330\252\330\261\331\204-\331\206\330\263\330\256\331\207.html" "b/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\330\257\330\261\330\250\330\247\330\261\331\207\331\224-\332\251\331\206\330\252\330\261\331\204-\331\206\330\263\330\256\331\207.html"
index 9e5f7b112d..36aed5f8e4 100644
--- "a/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\330\257\330\261\330\250\330\247\330\261\331\207\331\224-\332\251\331\206\330\252\330\261\331\204-\331\206\330\263\330\256\331\207.html"
+++ "b/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\330\257\330\261\330\250\330\247\330\261\331\207\331\224-\332\251\331\206\330\252\330\261\331\204-\331\206\330\263\330\256\331\207.html"
@@ -48,7 +48,7 @@ سیستمهای ک
-
}}" alt="Local version control diagram">
+
}}" alt="Local version control diagram">
نمودار 1. کنترل نسخه محلی.
@@ -69,7 +69,7 @@ سیستمها
-
}}" alt="Centralized version control diagram">
+
}}" alt="Centralized version control diagram">
نمودار 2. کنترل نسخه متمرکز.
@@ -98,7 +98,7 @@ سیستمه
-
}}" alt="Distributed version control diagram">
+
}}" alt="Distributed version control diagram">
نمودار 3. کنترل نسخه توزیعشده.
diff --git "a/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\331\206\330\265\330\250-\332\257\333\214\330\252.html" "b/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\331\206\330\265\330\250-\332\257\333\214\330\252.html"
index b453e0f6ae..5769b48793 100644
--- "a/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\331\206\330\265\330\250-\332\257\333\214\330\252.html"
+++ "b/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\331\206\330\265\330\250-\332\257\333\214\330\252.html"
@@ -85,7 +85,7 @@ نصب روی مک
-
}}" alt="Git macOS installer.">
+
}}" alt="Git macOS installer.">
نمودار 7. نصاب گیت مک.
diff --git "a/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\332\257\333\214\330\252-\332\206\333\214\330\263\330\252\330\237.html" "b/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\332\257\333\214\330\252-\332\206\333\214\330\263\330\252\330\237.html"
index 80f65c2051..a275812fc1 100644
--- "a/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\332\257\333\214\330\252-\332\206\333\214\330\263\330\252\330\237.html"
+++ "b/content/book/fa/v2/\330\264\330\261\331\210\330\271-\330\250\331\207-\332\251\330\247\330\261-\332\257\333\214\330\252-\332\206\333\214\330\263\330\252\330\237.html"
@@ -36,7 +36,7 @@ اسنپشاتها، نه
-
}}" alt="Storing data as changes to a base version of each file.">
+
}}" alt="Storing data as changes to a base version of each file.">
نمودار 4. ذخیره دادهها به عنوان تغییرات اعمال شده به روی یک نسخه پایه از هر فایل.
@@ -49,7 +49,7 @@ اسنپشاتها، نه
-
}}" alt="Git stores data as snapshots of the project over time.">
+
}}" alt="Git stores data as snapshots of the project over time.">
نمودار 5. ذخیره دادهها به عنوان اسنپشاتهایی از پروژه در طول زمان.
@@ -57,7 +57,7 @@ اسنپشاتها، نه
این نقطه تمایز مهمی بین گیت و تقریباً تمام دیگر VCSهاست؛
باعث این است که گیت غالب دیدگاههای کنترل نسخه را، که بیشتر سیستمها از نسلهای قبل کپی کرده بودند، بازبینی کند.
همین اصل گیت را بیشتر یک فایلسیستم کوچک با ابزارهای افزودهٔ خارقالعاده قدرتمند میکند تا یک VCS خشک و خالی.
-در ادامه، هنگامی که برنچسازی در شاخهسازی در گیت توضیح داده شد، مفصلتر مزایای دیدن دادههایتان به روش گیت را بررسی خواهیم کرد.
+در ادامه، هنگامی که برنچسازی در }}">شاخهسازی در گیت توضیح داده شد، مفصلتر مزایای دیدن دادههایتان به روش گیت را بررسی خواهیم کرد.
@@ -115,7 +115,7 @@
به طور
اینها همه استفاده از گیت را به یکی از لذتهای دنیوی تبدیل میکند چراکه میدانیم که میتوانیم آزمون و خطای بدون خطر خرابکاری کردن داشته باشیم.
-برای نظارهٔ عمیق اینکه چگونه گیت دادههایش را ذخیره میکند و اینکه چگونه میتوانید اطلاعاتی که به نظر از دست رفته میآیند را بازگردانی کنید به بازگردانی کارها مراجعه کنید.
+برای نظارهٔ عمیق اینکه چگونه گیت دادههایش را ذخیره میکند و اینکه چگونه میتوانید اطلاعاتی که به نظر از دست رفته میآیند را بازگردانی کنید به
}}">بازگردانی کارها مراجعه کنید.
@@ -142,7 +142,7 @@
سه حالت ممکنه
-
}}" alt="Working tree, staging area, and Git directory.">
+
}}" alt="Working tree, staging area, and Git directory.">
نمودار 6. درخت کاری، صحنه و پوشه گیت.
@@ -178,7 +178,7 @@ سه حالت ممکنه
اگر نسخه خاصی از فایلی در پوشه گیت است کامیتشده به حساب میآید.
اگر ویرایش شده و به صحنه اضافه شده، استیجشده است.
و اگر از موقعی که چکاوت شده تغییری در آن ایجاد شده ولکن استیج نشده، ویرایششده است.
-در مقدمات گیت، بیشتر درباره این حالات و اینکه چطور میتوان از آنها در استیج استفاده کرد یا به طور کلی آنها را دور زد را میآموزید.
+در }}">مقدمات گیت، بیشتر درباره این حالات و اینکه چطور میتوان از آنها در استیج استفاده کرد یا به طور کلی آنها را دور زد را میآموزید.
\ No newline at end of file
diff --git "a/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\250\330\247\330\262\332\257\330\261\330\257\330\247\331\206\333\214-\332\251\330\247\330\261\331\207\330\247.html" "b/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\250\330\247\330\262\332\257\330\261\330\257\330\247\331\206\333\214-\332\251\330\247\330\261\331\207\330\247.html"
index aa61e42eb8..acbc69ef53 100644
--- "a/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\250\330\247\330\262\332\257\330\261\330\257\330\247\331\206\333\214-\332\251\330\247\330\261\331\207\330\247.html"
+++ "b/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\250\330\247\330\262\332\257\330\261\330\257\330\247\331\206\333\214-\332\251\330\247\330\261\331\207\330\247.html"
@@ -139,7 +139,7 @@ آناستیج کردن یک فایل استیجشده
در حال حاضر این توضیحات جادویی تمام چیزی بود که لازم بود درباره دستور git reset
بدانید.
-بعدتر در بخش Reset Demystified با جزئیات بیشتری وارد بحث reset
میشویم که چه کاری میکند و چطور میتوان در آن خبره شد تا کارهای جالبتری انجام داد.
+بعدتر در بخش
}}">Reset Demystified با جزئیات بیشتری وارد بحث
reset
میشویم که چه کاری میکند و چطور میتوان در آن خبره شد تا کارهای جالبتری انجام داد.
@@ -195,12 +195,12 @@
اگر مایل هستید تا تغییراتی که ایجاد کرده بودید را حفظ کنید اما باز هم لازم است که موقتاً آنها را از سر راهتان بردارید،
-در شاخهسازی در گیت به بررسی استش و شاخهسازی خواهیم پرداخت؛ به طور کل اینها راههای بهتری برای انجام این کار هستند.
+در
}}">شاخهسازی در گیت به بررسی استش و شاخهسازی خواهیم پرداخت؛ به طور کل اینها راههای بهتری برای انجام این کار هستند.
یادتان باشد، هرچیزی که در گیت کامیت شده باشد تقریباً همیشه میتواند بازگردانی شود.
حتی کامیتهایی که بر روی شاخههایی که حذف شدهاند وجود داشتند یا
-کامیتهایی که با فلگ --amend
بازنویسی شده بودند میتوانند بازگردانی شوند (بخش Data Recovery را برای بازیابی داده ببینید).
+کامیتهایی که با فلگ --amend
بازنویسی شده بودند میتوانند بازگردانی شوند (بخش }}">Data Recovery را برای بازیابی داده ببینید).
با این حال، هر چیزی را که از دست میدهید که هرگز کامیت نشده، قریب به یقین دیگر نخواهید دید.
diff --git "a/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\253\330\250\330\252-\330\252\330\272\333\214\333\214\330\261\330\247\330\252-\330\257\330\261-\331\205\330\256\330\262\331\206.html" "b/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\253\330\250\330\252-\330\252\330\272\333\214\333\214\330\261\330\247\330\252-\330\257\330\261-\331\205\330\256\330\262\331\206.html"
index 048fb85220..1c2c8f493c 100644
--- "a/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\253\330\250\330\252-\330\252\330\272\333\214\333\214\330\261\330\247\330\252-\330\257\330\261-\331\205\330\256\330\262\331\206.html"
+++ "b/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\253\330\250\330\252-\330\252\330\272\333\214\333\214\330\261\330\247\330\252-\330\257\330\261-\331\205\330\256\330\262\331\206.html"
@@ -37,7 +37,7 @@ ثبت تغییرات در مخز
-
}}" alt="The lifecycle of the status of your files.">
+
}}" alt="The lifecycle of the status of your files.">
نمودار 8. چرخه عمر وضعیت فایلهای شما.
@@ -59,7 +59,7 @@ بررسی وضعیت فایلها
این بدین معنی است که پوشه کاری شما تمیز است؛ به زبان دیگر، هیچ کدام از فایلهای رهگیریشده شما ویرایش نشدهاند.
علاوه بر این گیت هیچ فایل دنبال نشدهای نمیبینید، اگر میدید در اینجا لیست میشد.
در آخر، این دستور به شما میگوید که بر روی کدام شاخه و شعبه هستید و به شما اطلاع میدهد که شاخه مذکور از شاخهای که از سرور آمده جدا نشده است.
-فعلاً، آن شاخه همیشه master
است که به صورت پیش فرض ساخته شده است؛ نگران نباشید در بخش شاخهسازی در گیت درباره این موضوع با جزئیات بحث خواهد شد.
+فعلاً، آن شاخه همیشه master
است که به صورت پیش فرض ساخته شده است؛ نگران نباشید در بخش }}">شاخهسازی در گیت درباره این موضوع با جزئیات بحث خواهد شد.
فرض کنیم یک فایل جدید به پروژه اضافه میکنیم، یک فایل README
ساده.
@@ -528,7 +528,7 @@
کامیت کردن تغییراتتان
- ویرایشگر با متغیر محیطی EDITOR شل شما تنظیم میشود — معمولاً ویم یا ایمکس است، هرچند همانطور که در شروع به کار مشاهده کردید،
+ ویرایشگر با متغیر محیطی EDITOR شل شما تنظیم میشود — معمولاً ویم یا ایمکس است، هرچند همانطور که در }}">شروع به کار مشاهده کردید،
میتوانید آنرا با استفاده از دستور git config --global core.editor با هر چیزی که میخواهید جایگزین کنید.
|
diff --git "a/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\257\330\263\330\252\333\214\330\247\330\250\333\214-\330\250\331\207-\333\214\332\251-\331\205\330\256\330\262\331\206-\332\257\333\214\330\252.html" "b/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\257\330\263\330\252\333\214\330\247\330\250\333\214-\330\250\331\207-\333\214\332\251-\331\205\330\256\330\262\331\206-\332\257\333\214\330\252.html"
index 5203e8a9ea..3022a15e7a 100644
--- "a/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\257\330\263\330\252\333\214\330\247\330\250\333\214-\330\250\331\207-\333\214\332\251-\331\205\330\256\330\262\331\206-\332\257\333\214\330\252.html"
+++ "b/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\257\330\263\330\252\333\214\330\247\330\250\333\214-\330\250\331\207-\333\214\332\251-\331\205\330\256\330\262\331\206-\332\257\333\214\330\252.html"
@@ -79,7 +79,7 @@
را
با زدن این دستور یک پوشه تازه به نام .git
ساخته میشود که تمام فایلهایی که مخزن نیاز دارد — اسکلت یک مخزن گیت — را در بر دارد.
تا اینجای کار، گیت تغییرات هیچ فایلی را دنبال نمیکند.
-(برای اینکه بدانید در پوشه .git
که هم اکنون ایجاد کردید، چه فایلهایی وجود دارند، Git Internals را ببینید.)
+(برای اینکه بدانید در پوشه
.git
که هم اکنون ایجاد کردید، چه فایلهایی وجود دارند،
}}">Git Internals را ببینید.)
اگر میخواهید شروع به کنترل نسخه فایلهای موجود در پروژه کنید (مگر اینکه پوشه خالی باشد) شاید بهتر باشد که آنها را ترک
@@ -107,7 +107,7 @@
کلونکردن از مخزن موجود
به صورت پیشفرض با اجرای دستور
git clone
هر نسخهای از هر فایلی که در تاریخچهٔ پروژه است توسط گیت آورده میشود.
در حقیقت اگر احیاناً دیسک سرور شما دچار مشکل گردد و اطلاعات از دست روند غالباً میتوانید به طور مستقیم از هر کلون دیگری
روی هر کلاینت دیگری استفاده کنید تا اطلاعات سرور را به همان حالتی که به هنگام کلون کردن بود بازگردانید.
-(ممکن است بعضی از هوکهای سرور و این قبیل اطلاعات از دست بروند اما تمام نسخههای کنترل شده خواهند ماند — برای جزئیات بیشتر
راهاندازی گیت در سرور را مطالعه کنید.)
+(ممکن است بعضی از هوکهای سرور و این قبیل اطلاعات از دست بروند اما تمام نسخههای کنترل شده خواهند ماند — برای جزئیات بیشتر
}}">راهاندازی گیت در سرور را مطالعه کنید.)
با دستور git clone <url>
یک مخزن را کلون میکنید.
@@ -137,7 +137,7 @@
کلونکردن از مخزن موجود
گیت دارای تعداد زیادی پروتکلهای انتقال است که شما میتوانید از آنها استفاده کنید.
در مثال قبل از پروتکل https://
استفاده شد، اما شاید git://
یا user@server:path/to/repo.git
را نیز دیده باشید، که از پروتکل SSH استفاده میکند.
-راهاندازی گیت در سرور تمام گزینههای موجود برای را دسترسی به مخزن گیت را معرفی خواهد کرد و درباره مضرات و فواید هر کدام توضیح خواهد داد.
+
}}">راهاندازی گیت در سرور تمام گزینههای موجود برای را دسترسی به مخزن گیت را معرفی خواهد کرد و درباره مضرات و فواید هر کدام توضیح خواهد داد.
\ No newline at end of file
diff --git "a/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\257\333\214\330\257\331\206-\330\252\330\247\330\261\333\214\330\256\332\206\331\207\331\224-\332\251\330\247\331\205\333\214\330\252\342\200\214\331\207\330\247.html" "b/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\257\333\214\330\257\331\206-\330\252\330\247\330\261\333\214\330\256\332\206\331\207\331\224-\332\251\330\247\331\205\333\214\330\252\342\200\214\331\207\330\247.html"
index 9149c8384e..5b5bbce4b4 100644
--- "a/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\257\333\214\330\257\331\206-\330\252\330\247\330\261\333\214\330\256\332\206\331\207\331\224-\332\251\330\247\331\205\333\214\330\252\342\200\214\331\207\330\247.html"
+++ "b/content/book/fa/v2/\331\205\331\202\330\257\331\205\330\247\330\252-\332\257\333\214\330\252-\330\257\333\214\330\257\331\206-\330\252\330\247\330\261\333\214\330\256\332\206\331\207\331\224-\332\251\330\247\331\205\333\214\330\252\342\200\214\331\207\330\247.html"
@@ -183,7 +183,7 @@ دیدن تاریخچهٔ کامیتها