From 9d2bbb7471fa86953ae8d1c1af44e19f3e9f83cc Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sun, 25 Nov 2007 04:56:07 +0000 Subject: [PATCH] Autogenerated HTML docs for v1.5.3.6-950-g92b7b --- RelNotes-1.5.4.txt | 38 ++++++++++++++++++++++++++++++++++---- cmds-purehelpers.txt | 2 +- git-peek-remote.html | 5 ++--- git-peek-remote.txt | 3 +-- git-push.html | 15 ++++++++++++++- git-push.txt | 8 ++++++++ git.html | 4 ++-- 7 files changed, 62 insertions(+), 13 deletions(-) diff --git a/RelNotes-1.5.4.txt b/RelNotes-1.5.4.txt index a4a2a7f42..ff4d3d82b 100644 --- a/RelNotes-1.5.4.txt +++ b/RelNotes-1.5.4.txt @@ -6,6 +6,14 @@ Updates since v1.5.3 * Comes with much improved gitk. + * Comes with git-gui 0.9.0 with i18n. + + * git-lost-found was deprecated in favor of git-fsck's --lost-found + option. + + * git-peek-remote is deprecated, as git-ls-remote was written in C and + works for all transports. + * "progress display" from many commands are a lot nicer to the eye. Transfer commands show throughput data. @@ -15,6 +23,11 @@ Updates since v1.5.3 * git-rebase learned --whitespace option. + * In git-rebase, when you decide not to replay a particular change + after the command stopped with a conflict, you can say "git-rebase + --skip" without first running "git reset --hard", as the command now + run it for you. + * git-remote knows --mirror mode. * git-merge can call the "post-merge" hook. @@ -37,11 +50,20 @@ Updates since v1.5.3 variable used to mean "do not require", but we now use the safer default). + * git-clean has been rewritten in C. + * git-push has been rewritten in C. * git-push learned --dry-run option to show what would happen if a push is run. + * git-push does not update a tracking ref on the pushing side when the + remote refused to update the corresponding ref. + + * git-push learned --mirror option. This is to push the local refs + one-to-one to the remote, and deletes refs from the remote that do + not exist anymore in the repository on the pushing side. + * git-remote learned "rm" subcommand. * git-rebase --interactive mode can now work on detached HEAD. @@ -54,9 +76,6 @@ Updates since v1.5.3 * Various Perforce importer updates. - * git-lost-found was deprecated in favor of git-fsck's --lost-found - option. - * "git log" learned --early-output option to help interactive GUI implementations. @@ -86,6 +105,17 @@ Updates since v1.5.3 to allow checking out a path outside the current directory without cd'ing up. + * "git send-email --dry-run" shows full headers for easier + diagnosis. + + * "git merge-ours" is built-in. + + * "git svn" learned "info" subcommand. + + * "git status" from a subdirectory now shows relative paths + which makes copy-and-pasting for git-checkout/git-add/git-rm + easier. + * Output processing for '--pretty=format:' has been optimized. @@ -119,6 +149,6 @@ this release, unless otherwise noted. -- exec >/var/tmp/1 -O=v1.5.3.6-727-g5d3d1ca +O=v1.5.3.6-950-gda03a58 echo O=`git describe refs/heads/master` git shortlog --no-merges $O..refs/heads/master ^refs/heads/maint diff --git a/cmds-purehelpers.txt b/cmds-purehelpers.txt index 9880388de..d54a84c58 100644 --- a/cmds-purehelpers.txt +++ b/cmds-purehelpers.txt @@ -20,7 +20,7 @@ gitlink:git-patch-id[1]:: Compute unique ID for a patch. gitlink:git-peek-remote[1]:: - List the references in a remote repository. + (deprecated) List the references in a remote repository. gitlink:git-sh-setup[1]:: Common git shell script setup code. diff --git a/git-peek-remote.html b/git-peek-remote.html index a1418c2c4..740a2585c 100644 --- a/git-peek-remote.html +++ b/git-peek-remote.html @@ -276,8 +276,7 @@ git-peek-remote(1) Manual Page

DESCRIPTION

-

Lists the references the remote repository has, and optionally -stores them in the local repository under the same name.

+

This command is deprecated; use git-ls-remote instead.

OPTIONS

@@ -341,7 +340,7 @@ stores them in the local repository under the same name.

diff --git a/git-peek-remote.txt b/git-peek-remote.txt index abc171266..38a5325af 100644 --- a/git-peek-remote.txt +++ b/git-peek-remote.txt @@ -12,8 +12,7 @@ SYNOPSIS DESCRIPTION ----------- -Lists the references the remote repository has, and optionally -stores them in the local repository under the same name. +This command is deprecated; use `git-ls-remote` instead. OPTIONS ------- diff --git a/git-push.html b/git-push.html index 6d2925f49..6746b0757 100644 --- a/git-push.html +++ b/git-push.html @@ -335,6 +335,19 @@ the remote repository.

+--mirror +
+
+

+ Instead of naming each ref to push, specifies that all + refs under $GIT_DIR/refs/heads/ and $GIT_DIR/refs/tags/ + be mirrored to the remote repository. Newly created local + refs will be pushed to the remote end, locally updated refs + will be force updated on the remote end, and deleted refs + will be removed from the remote end. +

+
+
--dry-run
@@ -621,7 +634,7 @@ by Linus Torvalds <torvalds@osdl.org>

diff --git a/git-push.txt b/git-push.txt index 4a68aaba3..b8003c63c 100644 --- a/git-push.txt +++ b/git-push.txt @@ -63,6 +63,14 @@ the remote repository. Instead of naming each ref to push, specifies that all refs under `$GIT_DIR/refs/heads/` be pushed. +\--mirror:: + Instead of naming each ref to push, specifies that all + refs under `$GIT_DIR/refs/heads/` and `$GIT_DIR/refs/tags/` + be mirrored to the remote repository. Newly created local + refs will be pushed to the remote end, locally updated refs + will be force updated on the remote end, and deleted refs + will be removed from the remote end. + \--dry-run:: Do everything except actually send the updates. diff --git a/git.html b/git.html index 5978784ef..03174115d 100644 --- a/git.html +++ b/git.html @@ -1439,7 +1439,7 @@ users typically do not use them directly.

- List the references in a remote repository. + (deprecated) List the references in a remote repository.

@@ -1925,7 +1925,7 @@ contributors on the git-list <git@vger.kernel.org>.

-- 2.26.2