diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-10-27 15:09:49 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-10-27 15:09:50 -0700 |
commit | 40696c67274305d6258539de5a36649cf833f712 (patch) | |
tree | c7f286e661d93790c42b5443cd4b0ab9dd9c6e4e /Documentation/config | |
parent | de0a7effc86aadf6177fdcea52b5ae24c7a85911 (diff) | |
parent | de9ed3ef3740f8227cc924e845032954d1f1b1b7 (diff) | |
download | git-40696c67274305d6258539de5a36649cf833f712.tar.gz |
Merge branch 'sb/clone-origin'
"git clone" learned clone.defaultremotename configuration variable
to customize what nickname to use to call the remote the repository
was cloned from.
* sb/clone-origin:
clone: allow configurable default for `-o`/`--origin`
clone: read new remote name from remote_name instead of option_origin
clone: validate --origin option before use
refs: consolidate remote name validation
remote: add tests for add and rename with invalid names
clone: use more conventional config/option layering
clone: add tests for --template and some disallowed option pairs
Diffstat (limited to 'Documentation/config')
-rw-r--r-- | Documentation/config/clone.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/config/clone.txt b/Documentation/config/clone.txt new file mode 100644 index 0000000000..47de36a5fe --- /dev/null +++ b/Documentation/config/clone.txt @@ -0,0 +1,4 @@ +clone.defaultRemoteName:: + The name of the remote to create when cloning a repository. Defaults to + `origin`, and can be overridden by passing the `--origin` command-line + option to linkgit:git-clone[1]. |