From: Junio C Hamano
Date: Wed, 14 Feb 2007 07:23:58 +0000 (+0000)
Subject: Autogenerated HTML docs for v1.5.0-19-gddff
X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=053827fc208a615853d69ff66269e9c1600b7fa0;p=git.git
Autogenerated HTML docs for v1.5.0-19-gddff
---
diff --git a/RelNotes-1.5.0.txt b/RelNotes-1.5.0.txt
index 84e7eaf3c..f0120e1f5 100644
--- a/RelNotes-1.5.0.txt
+++ b/RelNotes-1.5.0.txt
@@ -94,8 +94,8 @@ Updates in v1.5.0 since v1.4.4 series
entries for selected paths.
- git-update-index is much less visible. Many suggestions to
- use the command in git output and documentation have now been
- replaced by simpler commands such as "git add" or "git rm".
+ use the command in git output and documentation have now been
+ replaced by simpler commands such as "git add" or "git rm".
* Repository layout and objects transfer
@@ -291,12 +291,10 @@ Updates in v1.5.0 since v1.4.4 series
reset" to jump to arbitrary commit, while still keeping your
HEAD detached.
- Going back to attached state (i.e. on a particular branch) by
- "git checkout $branch" can lose the current stat you arrived
- in these ways, and "git checkout" refuses when the detached
- HEAD is not pointed by any existing ref (an existing branch,
- a remote tracking branch or a tag). This safety can be
- overridden with "git checkout -f $branch".
+ Remember that a detached state is volatile, i.e. it will be forgotten
+ as soon as you move away from it with the checkout or reset command,
+ unless a branch is created from it as mentioned above. It is also
+ possible to rescue a lost detached state from the HEAD reflog.
* Packed refs
@@ -411,14 +409,14 @@ Updates in v1.5.0 since v1.4.4 series
* Foreign SCM interfaces
- - git-svn now requires the Perl SVN:: libraries, the
- command-line backend was too slow and limited.
+ - git-svn now requires the Perl SVN:: libraries, the
+ command-line backend was too slow and limited.
- - the 'commit' subcommand of git-svn has been renamed to
- 'set-tree', and 'dcommit' is the recommended replacement for
- day-to-day work.
+ - the 'commit' subcommand of git-svn has been renamed to
+ 'set-tree', and 'dcommit' is the recommended replacement for
+ day-to-day work.
- - git fast-import backend.
+ - git fast-import backend.
* User support
diff --git a/cmds-ancillarymanipulators.txt b/cmds-ancillarymanipulators.txt
index b7b42861f..56d388ef7 100644
--- a/cmds-ancillarymanipulators.txt
+++ b/cmds-ancillarymanipulators.txt
@@ -2,7 +2,7 @@ gitlink:git-convert-objects[1]::
Converts old-style git repository.
gitlink:git-fast-import[1]::
- Backend for fast Git data importers..
+ Backend for fast Git data importers.
gitlink:git-lost-found[1]::
Recover lost refs that luckily have not yet been pruned.
@@ -25,3 +25,6 @@ gitlink:git-repack[1]::
gitlink:git-config[1]::
Get and set repository or global options.
+gitlink:git-remote[1]::
+ manage set of tracked repositories.
+
diff --git a/cmds-mainporcelain.txt b/cmds-mainporcelain.txt
index 9a59c0305..49922e672 100644
--- a/cmds-mainporcelain.txt
+++ b/cmds-mainporcelain.txt
@@ -73,9 +73,6 @@ gitlink:git-rebase[1]::
gitlink:git-reset[1]::
Reset current HEAD to the specified state.
-gitlink:git-resolve[1]::
- Merge two commits.
-
gitlink:git-revert[1]::
Revert an existing commit.
diff --git a/cmds-plumbinginterrogators.txt b/cmds-plumbinginterrogators.txt
index ad2256358..5c083ed6b 100644
--- a/cmds-plumbinginterrogators.txt
+++ b/cmds-plumbinginterrogators.txt
@@ -7,9 +7,6 @@ gitlink:git-diff-files[1]::
gitlink:git-diff-index[1]::
Compares content and mode of blobs between the index and repository.
-gitlink:git-diff-stages[1]::
- Compares two merge stages in the index.
-
gitlink:git-diff-tree[1]::
Compares the content and mode of blobs found via two tree objects.
diff --git a/core-intro.txt b/core-intro.txt
index abafefc71..24b060b91 100644
--- a/core-intro.txt
+++ b/core-intro.txt
@@ -587,4 +587,5 @@ stages to temporary files and calls a "merge" script on it:
git-merge-index git-merge-one-file hello.c
-and that is what higher level `git resolve` is implemented with.
+and that is what higher level `git merge -s resolve` is implemented
+with.
diff --git a/core-tutorial.html b/core-tutorial.html
index c8ccee785..1edab71f1 100644
--- a/core-tutorial.html
+++ b/core-tutorial.html
@@ -1192,7 +1192,7 @@ see more complex cases.
Now, let's pretend you are the one who did all the work in
mybranch, and the fruit of your hard work has finally been merged
to the master branch. Let's go back to mybranch, and run
-resolve to get the "upstream changes" back to your branch.
+git merge to get the "upstream changes" back to your branch.
$ git checkout mybranch
@@ -1209,7 +1209,7 @@ Fast forward
2 files changed, 2 insertions(+), 0 deletions(-)
Because your branch did not contain anything more than what are
-already merged into the master branch, the resolve operation did
+already merged into the master branch, the merge operation did
not actually do a merge. Instead, it just updated the top of
the tree of your branch to that of the master branch. This is
often called fast forward merge.
@@ -1325,10 +1325,10 @@ usefulness when git Native and SSH transports were introduced,
and not used by git pull or git push scripts.
-Once you fetch from the remote repository, you resolve that
+
Once you fetch from the remote repository, you merge that
with your current branch.
However — it's such a common thing to fetch and then
-immediately resolve, that it's called git pull, and you can
+immediately merge, that it's called git pull, and you can
simply do
@@ -1969,7 +1969,7 @@ to follow, not easier.