Skip to content

Commit 1921f78

Browse files
author
ttaylorr
committed
Update translated manual pages
Updated via the `update-translated-manual-pages.yml` GitHub workflow.
1 parent 826e030 commit 1921f78

File tree

389 files changed

+75714
-13090
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

389 files changed

+75714
-13090
lines changed

external/docs/asciidoc/037ded113eae74cea00728b2fcbb6c06f245ca83

+422
Large diffs are not rendered by default.

external/docs/asciidoc/044891138fc0ea9630818f7e21465099d8adf088

+783
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
git-commit-tree(1)
2+
==================
3+
4+
名称
5+
--
6+
git-commit-tree -创建一个新的提交对象
7+
8+
9+
概述
10+
--
11+
[verse]
12+
'git commit-tree' <目录树> [(-p <父对象>)...]
13+
'git commit-tree' [(-p <父对象>)...] [-S[<keyid>]] [(-m <消息>)...]
14+
[(-F <文件>)...] <目录树>
15+
16+
17+
描述
18+
--
19+
这通常不是最终用户想要直接运行的。 请参见 linkgit:git-commit[1]。
20+
21+
根据提供的树对象创建新的提交对象,并将新的提交对象 id 发送到 stdout。除非给出 `-m` 或 `-F`选项,否则日志信息将从标准输入读取。
22+
23+
`-m` 和 `-F` 选项可以以任意顺序给出任意次数。提交日志信息将按照选项的顺序排列。
24+
25+
一个提交对象可以有任意数量的父对象。如果只有一个父对象,它就是一个普通的提交。如果有一个以上的父提交对象,提交就会在多行历史记录之间进行合并。初始(根)提交没有父对象。
26+
27+
树表示工作目录的特定目录状态,而提交则表示 “时间” 上的状态,并说明如何到达该状态。
28+
29+
通常情况下,一次提交会确定一个新的 "HEAD" 状态,虽然 Git 并不关心你把关于该状态的注释保存在哪里,但在实践中,我们倾向于把结果写入 `.git/HEAD` 指向的文件,这样我们就能随时看到上次提交的状态。
30+
31+
选项
32+
--
33+
<目录树>::
34+
一个现有的目录树对象。
35+
36+
-p <父提交>::
37+
每个 `-p` 表示父提交对象的 id。
38+
39+
-m <信息>::
40+
提交日志信息中的一个段落。可以给出多个段落,每个 <信息> 都将成为自己的段落。
41+
42+
-F <文件>::
43+
从给定文件中读取提交日志信息。使用 `-` 从标准输入读取。可以多次给定该文件,每个文件的内容都会成为自己的段落。
44+
45+
-S[<keyid>]::
46+
--gpg-sign[=<键 ID>]::
47+
--no-gpg-sign::
48+
GPG 签名提交。`keyid` 参数是可选的,默认为提交者身份;如果指定,必须与选项粘连,不能有空格。`--no-gpg-sign` 用于抵消命令行中先前给出的 `--gpg-sign`选项。
49+
50+
提交信息
51+
----
52+
53+
一个提交封装了:
54+
55+
- 所有父对象 ID
56+
- 作者姓名、电子邮件和日期
57+
- 提交者姓名、电子邮件和提交时间。
58+
59+
提交注释从标准输入流读取。如果没有通过 "<" 重定向提供更新日志条目,'git commit-tree' 就会等待输入条目,并以 ^D 结束。
60+
61+
日期格式
62+
----
63+
64+
`GIT_AUTHOR_DATE`, `GIT_COMMITTER_DATE` 环境变量:
65+
66+
Git 内部格式::
67+
`<unix 时间戳> <时区偏移量>`,其中 `<unix 时间戳>` 是自 UNIX epoch 以来的秒数。 `<时区偏移量>` 是相对于 UTC 的正或负偏移量。例如,CET(比 UTC 提前1小时)为 `+0100`。
68+
69+
RFC 2822::
70+
The standard date format as described by RFC 2822, for example `Thu, 07 Apr 2005 22:13:13 +0200`.
71+
72+
ISO 8601::
73+
按 ISO 8601 标准指定的时间和日期,例如 `2005-04-07T22:13:13`。解析器也接受空格代替 `T` 字符。秒的小数部分将被忽略,例如 `2005-04-07T22:13:13.019` 将被视为 `2005-04-07T22:13:13` 。
74+
+
75+
NOTE: 此外,日期部分还接受以下格式:`YYYY.MM.DD`,`MM/DD/YYYY` 和 `DD.MM.YYYY`。
76+
77+
ifdef::git-commit[]
78+
除了识别上述所有日期格式外,`--date` 选项还将尝试理解其它非标准化的日期格式,如 “昨天” 或 “上周五中午” 等相对日期。
79+
endif::git-commit[]
80+
[]
81+
82+
讨论
83+
--
84+
85+
Git在某种程度上是与字符编码无关的。
86+
87+
- blob对象的内容是未经解释的字节序列。 在核心层没有编码转换。
88+
89+
- 路径名以UTF-8规范化形式C编码,这适用于树对象、索引文件、参考名称,以及命令行参数、环境变量和配置文件(`.git/config`(见linkgit:git-config[1]),linkgit:gitignore[5],linkgit:gitattributes[5] 和linkgit:gitmodules[5])中的路径名。
90+
+
91+
请注意,Git 在核心层将路径名简单地视为非 NUL 字节的序列,没有路径名编码的转换(除了 Mac 和 Windows)。因此,即使在使用传统的扩展ASCII编码的平台和文件系统上,使用非ASCII的路径名大多也能工作。然而,在这种系统上创建的仓库在基于UTF-8的系统(如Linux、Mac、Windows)上将无法正常工作,反之亦然。 此外,许多基于Git的工具简单地认为路径名称是UTF-8,而不能正确显示其他编码。
92+
93+
- 提交日志信息通常以UTF-8编码,但也支持其他扩展ASCII编码。这包括ISO-8859-x、CP125x和其他许多编码,但不包括UTF-16/32、EBCDIC和CJK多字节编码(GBK、Shift-JIS、Big5、EUC-x、CP9xx等)。
94+
95+
尽管我们鼓励提交日志信息使用UTF-8编码,但核心系统和Git Porcelain的设计并不强制要求项目使用UTF-8。 如果某个项目的所有参与者都认为使用传统编码更方便,Git也不会禁止。 然而,有几件事需要注意。
96+
97+
. `git commit` and `git commit-tree` issue a warning if the commit log message given to it does not look like a valid UTF-8 string, unless you explicitly say your project uses a legacy encoding. The way to say this is to have `i18n.commitEncoding` in `.git/config` file, like this:
98+
+
99+
------------
100+
[i18n]
101+
commitEncoding = ISO-8859-1
102+
------------
103+
+
104+
用上述设置创建的提交对象在它的 `encoding` 头中记录了 `i18n.commitEncoding` 的值。 这是为了帮助以后看这些对象的人。 缺少这个头意味着提交日志信息是以 UTF-8 编码的。
105+
106+
. `git log`, `git show`, `git blame` and friends look at the `encoding` header of a commit object, and try to re-code the log message into UTF-8 unless otherwise specified. You can specify the desired output encoding with `i18n.logOutputEncoding` in `.git/config` file, like this:
107+
+
108+
------------
109+
[i18n]
110+
logOutputEncoding = ISO-8859-1
111+
------------
112+
+
113+
如果你没有这个配置变量,则使用`i18n.commitEncoding`的值来代替。
114+
115+
请注意,我们特意选择在提交对象层面上,不对提交日志信息进行重新编码,因为重新编码为UTF-8不一定是一个可逆的操作。
116+
[]
117+
118+
文件
119+
--
120+
/etc/mailname
121+
122+
参见
123+
--
124+
linkgit:git-write-tree[1] linkgit:git-commit[1]
125+
126+
GIT
127+
---
128+
属于 linkgit:git[1] 文档
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,214 @@
1+
git-switch(1)
2+
=============
3+
4+
NOM
5+
---
6+
git-switch - bascule de branche
7+
8+
SYNOPSIS
9+
--------
10+
[verse]
11+
'git switch' [<options>] [--no-guess] <branche>
12+
'git switch' [<options>] --detach [<point-de-départ>]
13+
'git switch' [<options>] (-c|-C) <nouvelle-branche> [<point-de-départ>]
14+
'git switch' [<options>] --orphan <nouvelle-branche>
15+
16+
DESCRIPTION
17+
-----------
18+
Passe à une branche spécifiée. L'arbre de travail et l'index sont mis à jour pour correspondre à la branche. Tous les nouveaux commits seront ajoutés au sommet de cette branche.
19+
20+
En option, une nouvelle branche peut être créée avec les options `-c`, `-C`, automatiquement à partir d'une branche distante du même nom (voir `--guess`), ou détacher l'arbre de travail de toute branche avec `--detach` en même temps que la commutation.
21+
22+
La commutation de branche ne nécessite pas d'index et d'arbre de travail propres(c.-à-d. aucune différence par rapport à `HEAD`). L'opération est interrompue cependant si l'opération entraîne une perte de modifications locales, sauf indication contraire via `--discard-changes` ou `--merge`.
23+
24+
CETTE COMMANDE EST EXPÉRIMENTALE. LE COMPORTEMENT PEUT CHANGER.
25+
26+
OPTIONS
27+
-------
28+
<branche>::
29+
Branche sur laquelle commuter.
30+
31+
<nouvelle-branche>::
32+
Nom pour une nouvelle branche.
33+
34+
<point_de_départ>::
35+
The starting point for the new branch. Specifying a `<start-point>` allows you to create a branch based on some other point in history than where HEAD currently points. (Or, in the case of `--detach`, allows you to inspect and detach from some other point.)
36+
+
37+
Vous pouvez utiliser la syntaxe `@{-N}` pour faire référence à la N-ième dernière branche ou commit sur lesquels on a basculé en utilisant une opération « git switch » ou « git checkout ». Vous pouvez aussi spécifier `-` qui est synonyme de `@{-1}`. C'est souvent utilisé pour basculer rapidement entre deux branches ou pour annuler un basculement par erreur.
38+
+
39+
Autre cas spécial supplémentaire, vous pouvez utiliser `A...B` comme raccourci pour la base de fusion de `A` et `B` s'il y a exactement une seule base de fusion. Vous pouvez ne pas spécifier `A` ou `B`, auquel cas ce sera `HEAD` par défaut.
40+
41+
-c <nouvelle-branche>::
42+
--create <nouvelle-branche>::
43+
Créer une nouvelle branche nommée `<nouvelle-branche>` commençant à `<point-de-départ>` avant de basculer sur cette branche. C'est l'équivalent transactionnel de
44+
+
45+
------------
46+
$ git branch <nouvelle-branche>
47+
$ git switch <nouvelle-branche>
48+
------------
49+
+
50+
that is to say, the branch is not reset/created unless "git switch" is successful (e.g., when the branch is in use in another worktree, not just the current branch stays the same, but the branch is not reset to the start-point, either).
51+
52+
-C <nouvelle-branche>::
53+
--force-create <nouvelle-branche>::
54+
Similar to `--create` except that if `<new-branch>` already exists, it will be reset to `<start-point>`. This is a convenient shortcut for:
55+
+
56+
------------
57+
$ git branch -f <nouvelle-branche>
58+
$ git switch <nouvelle-branche>
59+
------------
60+
61+
-d::
62+
--detach::
63+
Switch to a commit for inspection and discardable experiments. See the "DETACHED HEAD" section in linkgit:git-checkout[1] for details.
64+
65+
--guess::
66+
--no-guess::
67+
Si la `<branche>` n'est pas trouvée mais qu'il existe une branche de suivi pour un dépôt distant unique (appelé `<distant>`) avec un nom correspondant, le traiter comme équivalent à
68+
+
69+
------------
70+
$ git switch -c <branche> --track <distant>/<branche>
71+
------------
72+
+
73+
Si la branche existe dans plus d'un distant et que l'un d'entre eux est la valeur de la variable de configuration `checkout.defaultRemote`, celui-ci sera utilisé pour désambiguïser, même si la <branche> n'est pas unique parmi tous les distants. Réglez la variable `checkout.defaultRemote=origin` par exemple pour extraire toujours les branches distantes depuis celle-ci si <branche> est ambigüe mais existe sur le distant 'origin'. Voir aussi `checkout.defaultRemote` dans linkgit:git-config[1].
74+
+
75+
`--guess` est le comportement par défaut. Utilisez `--no-guess` pour le désactiver.
76+
+
77+
Le comportement par défaut peut être défini via la variable de configuration `checkout.guess`.
78+
79+
-f::
80+
--force::
81+
An alias for `--discard-changes`.
82+
83+
--discard-changes::
84+
Proceed even if the index or the working tree differs from `HEAD`. Both the index and working tree are restored to match the switching target. If `--recurse-submodules` is specified, submodule content is also restored to match the switching target. This is used to throw away local changes.
85+
86+
-m::
87+
--merge::
88+
Si vous avez des modifications locales sur un fichier ou plus qui sont différentes entre la branche actuelle et celle sur laquelle vous basculez, la commande refuse le basculement pour préserver vos modifications dans leur contexte. Cependant, avec cette option, une fusion à trois points entre la branche actuelle, le contenu de votre arbre de travail et la nouvelle branche est opérée et vous serez sur la nouvelle branche.
89+
+
90+
Quand un conflit de fusion apparaît, les entrées d'index pour les chemins en conflit sont laissées non-fusionnées et vous devez résoudre les conflits et les marquer résolus pour les chemins concernés avec `git add` (ou `git rm` si la fusion doit aboutir à la suppression du chemin).
91+
92+
--conflict=<style>::
93+
Identique à l'option `--merge` ci-dessus, mais la manière dont les sections en conflits sont présentées est modifiée, en surchargeant la variable de configuration `merge.conflictStyle`. Les valeurs possibles sont `merge` (fusion, par défaut), `diff3` et `zdiff3`.
94+
95+
-q::
96+
--quiet::
97+
Silencieux, supprimer les messages d'état.
98+
99+
--progress::
100+
--no-progress::
101+
L'état d'avancement est affiché sur la sortie standard d'erreur par défaut quand elle est attachée à un terminal, à moins que `--quiet` ne soit spécifié. Cette bascule active l'état d'avancement même sans être attaché à un terminal, indépendamment de `--quiet`.
102+
103+
-t::
104+
--track [direct|inherit]::
105+
À la création d'une nouvelle branche, établir la configuration 'upstream' (branche amont). `-c` est implicite. Voir `--track` dans linkgit:git-branch[1] pour plus de détails.
106+
+
107+
Si aucune option `-c` n'est fournie, le nom de la nouvelle branche sera dérivé de la branche de suivi à distance, en regardant la partie locale de la spécification de référence configurée pour le distant correspondant et en enlevant la partie initiale jusqu'au "*". Cela indiquerait d'utiliser le nom `hack` comme branche locale créée à partir de `origin/hack` (ou `remotes/origin/hack`, ou même `refs/remotes/origin/hack`). Si le nom fourni ne contient pas de barre oblique, ou si le résultat de la dérivation est un nom vide, la dérivation échoue. Vous pouvez spécifier explicitement un nom avec `-c` dans ce cas.
108+
109+
--no-track::
110+
Ne pas renseigner la configuration « amont », même si la configuration `branch.autoSetupMerge` est true.
111+
112+
--orphan <nouvelle-branche>::
113+
Create a new unborn branch, named `<new-branch>`. All tracked files are removed.
114+
115+
--ignore-other-worktrees::
116+
`git switch` échoue quand la référence voulue est déjà extraite dans un autre arbre de travail. Cette option force l'extraction. En d'autres termes, la réf peut être tenue par plus d'un arbre de travail.
117+
118+
--recurse-submodules::
119+
--no-recurse-submodules::
120+
L'utilisation de `--recurse-submodules` permet de mettre à jour le contenu de tous les sous-modules actifs en fonction du commit enregistré dans le super-projet. Si l'option n'est pas spécifiée (ou si `--no-recurse-submodules` est spécifié), les arbres de travail des sous-modules ne sont pas mis à jour. Comme linkgit:git-submodule[1], les `HEAD` des sous-modules seront détachées.
121+
122+
EXEMPLES
123+
--------
124+
125+
The following command switches to the "master" branch:
126+
127+
------------
128+
$ git switch master
129+
------------
130+
131+
Après avoir travaillé dans la mauvaise branche, basculer sur la branche correcte serait réalisé par :
132+
133+
------------
134+
$ git switch monsujet
135+
------------
136+
137+
Cependant, votre « fausse » branche et votre branche correcte « monsujet » peuvent être différentes par les fichiers que vous avez modifiés localement, auquel cas le basculement ci-dessus échouerait comme ceci :
138+
139+
------------
140+
$ git switch monsujet
141+
error : Vos modifications locales aux fichiers suivants seraient écrasées par l'extraction :
142+
------------
143+
144+
Vous pouvez fournir l'option `-m` à la commande, ce qui essaierait une fusion à trois points :
145+
146+
------------
147+
$ git switch -m monsujet
148+
Fusion automatique de frotz
149+
------------
150+
151+
Après cette fusion à trois points, les modifications locales ne sont _pas_ enregistrées dans votre index, donc `git diff` vous montrerait ce qui a changé depuis le sommet de la nouvelle branche.
152+
153+
To switch back to the previous branch before we switched to mytopic (i.e. "master" branch):
154+
155+
------------
156+
$ git switch -
157+
------------
158+
159+
You can grow a new branch from any commit. For example, switch to "HEAD~3" and create branch "fixup":
160+
161+
------------
162+
$ git switch -c fixup HEAD~3
163+
Switched to a new branch 'fixup'
164+
------------
165+
166+
Si vous souhaitez démarrer une branche nouvelle depuis une branche distante du même nom :
167+
168+
------------
169+
$ git switch new-topic
170+
Branch 'new-topic' set up to track remote branch 'new-topic' from 'origin'
171+
Switched to a new branch 'new-topic'
172+
------------
173+
174+
To check out commit `HEAD~3` for temporary inspection or experiment without creating a new branch:
175+
176+
------------
177+
$ git switch --detach HEAD~3
178+
HEAD is now at 9fc9555312 Merge branch 'cc/shared-index-permbits'
179+
------------
180+
181+
If it turns out whatever you have done is worth keeping, you can always create a new name for it (without switching away):
182+
183+
------------
184+
$ git switch -c good-surprises
185+
------------
186+
187+
CONFIGURATION
188+
-------------
189+
190+
Tout ce qui se trouve en dessous de cette ligne dans cette section est inclus de manière sélective à partir de la documentation linkgit:git-config[1]. Le contenu est le même que celui qui s'y trouve :
191+
[]
192+
193+
194+
195+
[WARNING]
196+
====
197+
Missing `fr/config/checkout.adoc`
198+
199+
See original version for this content.
200+
====
201+
202+
[]
203+
204+
VOIR AUSSI
205+
----------
206+
linkgit:git-checkout[1], linkgit:git-branch[1]
207+
208+
GIT
209+
---
210+
Fait partie de la suite linkgit:git[1]
211+
212+
TRADUCTION
213+
----------
214+
Cette page de manuel a été traduite par Jean-Noël Avila <jn.avila AT free DOT fr> et les membres du projet git-manpages-l10n. Veuillez signaler toute erreur de traduction par un rapport de bogue sur le site https://github.com/jnavila/git-manpages-l10n .

0 commit comments

Comments
 (0)