-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated via the `update-book.yml` GitHub workflow.
- Loading branch information
ttaylorr
committed
Nov 22, 2024
1 parent
6238923
commit f2fc8c8
Showing
12 changed files
with
42 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
### DO NOT EDIT! Generated by script/update-book2.rb | ||
redirect_to: book/uk/v2/Основи-Git-Створення-Git-репозиторія#_getting_a_repo | ||
redirect_to: book/uk/v2/Основи-Git-Створення-Git-сховища#_getting_a_repo | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
### DO NOT EDIT! Generated by script/update-book2.rb | ||
redirect_to: book/uk/v2/Основи-Git-Створення-Git-репозиторія#_git_cloning | ||
redirect_to: book/uk/v2/Основи-Git-Створення-Git-сховища#_git_cloning | ||
--- |
2 changes: 1 addition & 1 deletion
2
external/book/content/book/uk/v2/ch00/_ініціалізація_репозиторія_в_існуючому_каталозі.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
### DO NOT EDIT! Generated by script/update-book2.rb | ||
redirect_to: book/uk/v2/Основи-Git-Створення-Git-репозиторія#_ініціалізація_репозиторія_в_існуючому_каталозі | ||
redirect_to: book/uk/v2/Основи-Git-Створення-Git-сховища#_ініціалізація_репозиторія_в_існуючому_каталозі | ||
--- |
2 changes: 1 addition & 1 deletion
2
external/book/content/book/uk/v2/ch00/ch02-git-basics-chapter.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
### DO NOT EDIT! Generated by script/update-book2.rb | ||
redirect_to: book/uk/v2/Основи-Git-Створення-Git-репозиторія#ch02-git-basics-chapter | ||
redirect_to: book/uk/v2/Основи-Git-Створення-Git-сховища#ch02-git-basics-chapter | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,8 +21,8 @@ | |
<h2 id="_git_aliases">Псевдоніми Git</h2> | ||
<div class="paragraph"> | ||
<p> | ||
До того, як завершити розділ про базовий Git, є ще одна маленька підказка, щоб зробити ваше користування Git простішим, легшим та більш знайомим: псевдоніми. | ||
Ми більше не будемо про них згадувати та будемо вважати, що ви використовуєте їх самостійно в решті книги, проте напевно вам слід знати, як їх використовувати.</p> | ||
Перед тим, як перейти до наступного розділу, ми хочемо представити особливість, яка може зробити ваше користування Git простішим, легшим та більш знайомим: псевдоніми. | ||
Для ясності, ми більше не будемо використовувати їх деінде в цій книзі, але якщо ви продовжите працювати з Git регулярно, псевдоніми — це те, про що ви повинні знати.</p> | ||
</div> | ||
<div class="paragraph"> | ||
<p>Git сам не намагається здогадатись, яку команду ви набрали, якщо ви набрали її частково. | ||
|
@@ -39,10 +39,10 @@ <h2 id="_git_aliases">Псевдоніми Git</h2> | |
</div> | ||
<div class="paragraph"> | ||
<p>Це означає, що, наприклад, замість <code>git commit</code> ви можете набрати просто <code>git ci</code>. | ||
З часом, ви напевно почнете використовувати й інші команди часто. Не вагайтесь створювати нові псевдоніми.</p> | ||
З часом, ви напевно почнете використовувати частіше й інші команди. Не вагайтесь створювати для них нові псевдоніми.</p> | ||
</div> | ||
<div class="paragraph"> | ||
<p>Ця техніка також може бути дуже корисною для створення нових команд, які ви гадаєте мають існувати. | ||
<p>Ця техніка також може бути дуже корисною для створення нових команд, які на вашу думку, мали б існувати. | ||
Наприклад, щоб виправити незручність, яку ми бачили при скасуванні змін до файлу, ви можете додати свою власну команду unstage (видалити з індексу) до Git:</p> | ||
</div> | ||
<div class="listingblock"> | ||
|
@@ -51,7 +51,7 @@ <h2 id="_git_aliases">Псевдоніми Git</h2> | |
</div> | ||
</div> | ||
<div class="paragraph"> | ||
<p>Після цього наступні команди еквівалентні:</p> | ||
<p>Після цього наступні дві команди еквівалентні:</p> | ||
</div> | ||
<div class="listingblock"> | ||
<div class="content"> | ||
|
@@ -78,7 +78,7 @@ <h2 id="_git_aliases">Псевдоніми Git</h2> | |
Author: Josh Goebel <[email protected]> | ||
Date: Tue Aug 26 19:48:51 2008 +0800 | ||
|
||
test for current head | ||
Test for current head | ||
|
||
Signed-off-by: Scott Chacon <[email protected]></code></pre> | ||
</div> | ||
|
Oops, something went wrong.