Skip to content
Snippets Groups Projects
Commit 730928e5 authored by Jean-Noël Avila's avatar Jean-Noël Avila
Browse files

Update sources after switching to po4a v0.62

parent 5bbb9d11
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
git clone https://github.com/mquinson/po4a.git git clone https://github.com/mquinson/po4a.git
cd po4a && git checkout v0.56 && cd .. cd po4a && git checkout v0.62 && cd ..
...@@ -120,8 +120,8 @@ are: ...@@ -120,8 +120,8 @@ are:
The .git location may be auto-discovered, or come from `$GIT_DIR` The .git location may be auto-discovered, or come from `$GIT_DIR`
environment variable. If the repository is auto discovered via a .git environment variable. If the repository is auto discovered via a .git
file (e.g. from submodules, or a linked worktree), the .git location file (e.g. from submodules, or a linked worktree), the .git location
would be the final location where the .git directory is, not where would be the final location where the .git directory is, not where the
the .git file is. .git file is.
+ +
The pattern can contain standard globbing wildcards and two additional The pattern can contain standard globbing wildcards and two additional
ones, `**/` and `/**`, that can match multiple path components. Please ones, `**/` and `/**`, that can match multiple path components. Please
...@@ -240,14 +240,12 @@ boolean:: ...@@ -240,14 +240,12 @@ boolean::
When a variable is said to take a boolean value, many When a variable is said to take a boolean value, many
synonyms are accepted for 'true' and 'false'; these are all synonyms are accepted for 'true' and 'false'; these are all
case-insensitive. case-insensitive.
+
true;; true;; Boolean true literals are `yes`, `on`, `true`,
Boolean true literals are `yes`, `on`, `true`,
and `1`. Also, a variable defined without `= <value>` and `1`. Also, a variable defined without `= <value>`
is taken as true. is taken as true.
false;; false;; Boolean false literals are `no`, `off`, `false`,
Boolean false literals are `no`, `off`, `false`,
`0` and the empty string. `0` and the empty string.
+ +
When converting a value to its canonical form using the `--type=bool` type When converting a value to its canonical form using the `--type=bool` type
......
...@@ -20,8 +20,9 @@ DESCRIPTION ...@@ -20,8 +20,9 @@ DESCRIPTION
This command creates an empty Git repository - basically a `.git` This command creates an empty Git repository - basically a `.git`
directory with subdirectories for `objects`, `refs/heads`, directory with subdirectories for `objects`, `refs/heads`,
`refs/tags`, and template files. An initial `HEAD` file that `refs/tags`, and template files. An initial branch without any
references the HEAD of the master branch is also created. commits will be created (see the `--initial-branch` option below
for its name).
If the `$GIT_DIR` environment variable is set then it specifies a path If the `$GIT_DIR` environment variable is set then it specifies a path
to use instead of `./.git` for the base of the repository. to use instead of `./.git` for the base of the repository.
...@@ -73,8 +74,10 @@ If this is reinitialization, the repository will be moved to the specified path. ...@@ -73,8 +74,10 @@ If this is reinitialization, the repository will be moved to the specified path.
-b <branch-name>:: -b <branch-name>::
--initial-branch=<branch-name>:: --initial-branch=<branch-name>::
Use the specified name for the initial branch in the newly created repository. Use the specified name for the initial branch in the newly created
If not specified, fall back to the default name: `master`. repository. If not specified, fall back to the default name (currently
`master`, but this is subject to change in the future; the name can be
customized via the `init.defaultBranch` configuration variable).
--shared[=(false|true|umask|group|all|world|everybody|0xxx)]:: --shared[=(false|true|umask|group|all|world|everybody|0xxx)]::
......
...@@ -663,7 +663,7 @@ In addition, the following pairs of options are incompatible: ...@@ -663,7 +663,7 @@ In addition, the following pairs of options are incompatible:
* --fork-point and --root * --fork-point and --root
BEHAVIORAL DIFFERENCES BEHAVIORAL DIFFERENCES
----------------------- ----------------------
git rebase has two primary backends: apply and merge. (The apply git rebase has two primary backends: apply and merge. (The apply
backend used to be known as the 'am' backend, but the name led to backend used to be known as the 'am' backend, but the name led to
......
This diff is collapsed.
...@@ -106,7 +106,6 @@ git-p4.txt ...@@ -106,7 +106,6 @@ git-p4.txt
git-pack-objects.txt git-pack-objects.txt
git-pack-redundant.txt git-pack-redundant.txt
git-pack-refs.txt git-pack-refs.txt
git-parse-remote.txt
git-patch-id.txt git-patch-id.txt
git-prune-packed.txt git-prune-packed.txt
git-prune.txt git-prune.txt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment