From: Junio C Hamano Date: Wed, 27 Dec 2006 10:59:55 +0000 (+0000) Subject: Autogenerated HTML docs for v1.5.0-rc0-g4aec X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7464064e9210aaa7590eb4ee592a1d3e069c386f;p=git.git Autogenerated HTML docs for v1.5.0-rc0-g4aec --- diff --git a/config.txt b/config.txt index 22482d6a9..6452a8be1 100644 --- a/config.txt +++ b/config.txt @@ -192,6 +192,25 @@ format.headers:: Additional email headers to include in a patch to be submitted by mail. See gitlink:git-format-patch[1]. +gc.reflogexpire:: + `git reflog expire` removes reflog entries older than + this time; defaults to 90 days. + +gc.reflogexpireunreachable:: + `git reflog expire` removes reflog entries older than + this time and are not reachable from the current tip; + defaults to 30 days. + +gc.rerereresolved:: + Records of conflicted merge you resolved earlier are + kept for this many days when `git rerere gc` is run. + The default is 60 days. See gitlink:git-rerere[1]. + +gc.rerereunresolved:: + Records of conflicted merge you have not resolved are + kept for this many days when `git rerere gc` is run. + The default is 15 days. See gitlink:git-rerere[1]. + gitcvs.enabled:: Whether the cvs pserver interface is enabled for this repository. See gitlink:git-cvsserver[1]. diff --git a/everyday.html b/everyday.html index 265949c85..c2562a7c6 100644 --- a/everyday.html +++ b/everyday.html @@ -321,7 +321,7 @@ $ git prune (4)
  1. -running without "—full" is usually cheap and assures the +running without --full is usually cheap and assures the repository health reasonably well.

  2. @@ -333,7 +333,7 @@ disk space is wasted by not repacking.
  3. -without "-a" repacks incrementally. repacking every 4-5MB +without -a repacks incrementally. repacking every 4-5MB of loose objects accumulation may be a good rule of thumb.

  4. @@ -388,8 +388,7 @@ following commands.

  5. -git-add(1) and git-update-index(1) to manage - the index file. +git-add(1) to manage the index file.

  6. @@ -411,8 +410,7 @@ following commands.

  7. -git-pull(1) with "." as the remote to merge between - local branches. +git-merge(1) to merge between local branches.

  8. @@ -427,8 +425,11 @@ following commands.

  9. Examples

    -

    Use a tarball as a starting point for a new repository:

    -

    +

    +
    +
    +Use a tarball as a starting point for a new repository. +
    +
    $ tar zxf frotz.tar.gz
    @@ -438,10 +439,19 @@ $ git add . (1)
     $ git commit -m 'import of frotz source tree.'
     $ git tag v2.43 (2)
    -

    + -<1> add everything under the current directory. -<2> make a lightweight, unannotated tag.

    -
    +
      +
    1. +

      +add everything under the current directory. +

      +
    2. +
    3. +

      +make a lightweight, unannotated tag. +

      +
    4. +
    +
    Create a topic branch and develop.
    @@ -453,7 +463,7 @@ $ edit/compile/test $ git checkout -- curses/ux_audio_oss.c (2) $ git add curses/ux_audio_alsa.c (3) $ edit/compile/test -$ git diff (4) +$ git diff HEAD (4) $ git commit -a -s (5) $ edit/compile/test $ git reset --soft HEAD^ (6) @@ -461,7 +471,7 @@ $ edit/compile/test $ git diff ORIG_HEAD (7) $ git commit -a -c ORIG_HEAD (8) $ git checkout master (9) -$ git pull . alsa-audio (10) +$ git merge alsa-audio (10) $ git log --since='3 days ago' (11) $ git log v2.43.. curses/ (12) @@ -473,13 +483,13 @@ create a new topic branch.
  10. -revert your botched changes in "curses/ux_audio_oss.c". +revert your botched changes in curses/ux_audio_oss.c.

  11. you need to tell git if you added a new file; removal and -modification will be caught if you do "commit -a" later. +modification will be caught if you do git commit -a later.

  12. @@ -515,19 +525,21 @@ switch to the master branch.
  13. -merge a topic branch into your master branch +merge a topic branch into your master branch. You can also use +git pull . alsa-audio, i.e. pull from the local repository.

  14. review commit logs; other forms to limit output can be -combined and include —max-count=10 (show 10 commits), —until=2005-12-10. +combined and include --max-count=10 (show 10 commits), +--until=2005-12-10, etc.

  15. -view only the changes that touch what's in curses/ -directory, since v2.43 tag. +view only the changes that touch what's in curses/ +directory, since v2.43 tag.

@@ -597,7 +609,7 @@ extract patches from your branch for e-mail submission.
  • -"pull" fetches from "origin" by default and merges into the +git pull fetches from origin by default and merges into the current branch.

  • @@ -625,8 +637,8 @@ garbage collect leftover objects from reverted pull.
  • -from time to time, obtain official tags from the "origin" -and store them under .git/refs/tags/. +from time to time, obtain official tags from the origin +and store them under .git/refs/tags/.

  • @@ -637,18 +649,21 @@ Push into another repository.
    -
    satellite$ git clone mothership:frotz/.git frotz (1)
    +
    satellite$ git clone mothership:frotz frotz (1)
     satellite$ cd frotz
    -satellite$ cat .git/remotes/origin (2)
    -URL: mothership:frotz/.git
    -Pull: master:origin
    -satellite$ echo 'Push: master:satellite' >>.git/remotes/origin (3)
    +satellite$ git repo-config --get-regexp '^(remote|branch)\.' (2)
    +remote.origin.url mothership:frotz
    +remote.origin.fetch refs/heads/*:refs/remotes/origin/*
    +branch.master.remote origin
    +branch.master.merge refs/heads/master
    +satellite$ git repo-config remote.origin.push \
    +           master:refs/remotes/satellite/master (3)
     satellite$ edit/compile/test/commit
     satellite$ git push origin (4)
     
     mothership$ cd frotz
     mothership$ git checkout master
    -mothership$ git pull . satellite (5)
    +mothership$ git merge satellite/master (5)
    1. @@ -660,21 +675,22 @@ machine.
    2. -clone creates this file by default. It arranges "git pull" -to fetch and store the master branch head of mothership machine -to local "origin" branch. +clone sets these configuration variables by default. +It arranges git pull to fetch and store the branches of mothership +machine to local remotes/origin/* tracking branches.

    3. -arrange "git push" to push local "master" branch to -"satellite" branch of the mothership machine. +arrange git push to push local master branch to +remotes/satellite/master branch of the mothership machine.

    4. -push will stash our work away on "satellite" branch on the -mothership machine. You could use this as a back-up method. +push will stash our work away on remotes/satellite/master +tracking branch on the mothership machine. You could use this as +a back-up method.

    5. @@ -706,7 +722,7 @@ tag.
    6. -forward port all changes in private2.6.14 branch to master branch +forward port all changes in private2.6.14 branch to master branch without a formal "merging".

    7. @@ -763,13 +779,13 @@ $ mailx (3) & s 2 3 4 5 ./+to-apply & s 7 8 ./+hold-linus & q -$ git checkout master +$ git checkout -b topic/one master $ git am -3 -i -s -u ./+to-apply (4) $ compile/test $ git checkout -b hold/linus && git am -3 -i -s -u ./+hold-linus (5) $ git checkout topic/one && git rebase master (6) -$ git checkout pu && git reset --hard master (7) -$ git pull . topic/one topic/two && git pull . hold/linus (8) +$ git checkout pu && git reset --hard next (7) +$ git merge topic/one topic/two && git merge hold/linus (8) $ git checkout maint $ git cherry-pick master~4 (9) $ compile/test @@ -815,7 +831,7 @@ master, nor exposed as a part of a stable branch.
    8. -restart "pu" every time from the master. +restart pu every time from the next.

    9. @@ -836,7 +852,7 @@ create a signed tag.
    10. make sure I did not accidentally rewind master beyond what I -already pushed out. "ko" shorthand points at the repository I have +already pushed out. ko shorthand points at the repository I have at kernel.org, and looks like this:

      @@ -844,13 +860,16 @@ at kernel.org, and looks like this:
      $ cat .git/remotes/ko
       URL: kernel.org:/pub/scm/git/git.git
       Pull: master:refs/tags/ko-master
      +Pull: next:refs/tags/ko-next
       Pull: maint:refs/tags/ko-maint
       Push: master
      +Push: next
       Push: +pu
       Push: maint
      -

      In the output from "git show-branch", "master" should have -everything "ko-master" has.

      +

      In the output from git show-branch, master should have +everything ko-master has, and next should have +everything ko-next has.

    11. @@ -953,7 +972,7 @@ $ grep git /etc/shells (2)

    12. log-in shell is set to /usr/bin/git-shell, which does not -allow anything but "git push" and "git pull". The users should +allow anything but git push and git pull. The users should get an ssh access to the machine.

    13. @@ -1045,7 +1064,7 @@ upload to public HTTP server hosted by your ISP. diff --git a/everyday.txt b/everyday.txt index 967767189..5d17ace72 100644 --- a/everyday.txt +++ b/everyday.txt @@ -47,11 +47,11 @@ $ git repack <3> $ git prune <4> ------------ + -<1> running without "--full" is usually cheap and assures the +<1> running without `\--full` is usually cheap and assures the repository health reasonably well. <2> check how many loose objects there are and how much disk space is wasted by not repacking. -<3> without "-a" repacks incrementally. repacking every 4-5MB +<3> without `-a` repacks incrementally. repacking every 4-5MB of loose objects accumulation may be a good rule of thumb. <4> after repack, prune removes the duplicate loose objects. @@ -80,8 +80,7 @@ following commands. * gitlink:git-checkout[1] and gitlink:git-branch[1] to switch branches. - * gitlink:git-add[1] and gitlink:git-update-index[1] to manage - the index file. + * gitlink:git-add[1] to manage the index file. * gitlink:git-diff[1] and gitlink:git-status[1] to see what you are in the middle of doing. @@ -91,8 +90,7 @@ following commands. * gitlink:git-reset[1] and gitlink:git-checkout[1] (with pathname parameters) to undo changes. - * gitlink:git-pull[1] with "." as the remote to merge between - local branches. + * gitlink:git-merge[1] to merge between local branches. * gitlink:git-rebase[1] to maintain topic branches. @@ -101,7 +99,7 @@ following commands. Examples ~~~~~~~~ -Use a tarball as a starting point for a new repository: +Use a tarball as a starting point for a new repository.:: + ------------ $ tar zxf frotz.tar.gz @@ -123,7 +121,7 @@ $ edit/compile/test $ git checkout -- curses/ux_audio_oss.c <2> $ git add curses/ux_audio_alsa.c <3> $ edit/compile/test -$ git diff <4> +$ git diff HEAD <4> $ git commit -a -s <5> $ edit/compile/test $ git reset --soft HEAD^ <6> @@ -131,15 +129,15 @@ $ edit/compile/test $ git diff ORIG_HEAD <7> $ git commit -a -c ORIG_HEAD <8> $ git checkout master <9> -$ git pull . alsa-audio <10> +$ git merge alsa-audio <10> $ git log --since='3 days ago' <11> $ git log v2.43.. curses/ <12> ------------ + <1> create a new topic branch. -<2> revert your botched changes in "curses/ux_audio_oss.c". +<2> revert your botched changes in `curses/ux_audio_oss.c`. <3> you need to tell git if you added a new file; removal and -modification will be caught if you do "commit -a" later. +modification will be caught if you do `git commit -a` later. <4> to see what changes you are committing. <5> commit everything as you have tested, with your sign-off. <6> take the last commit back, keeping what is in the working tree. @@ -147,11 +145,13 @@ modification will be caught if you do "commit -a" later. <8> redo the commit undone in the previous step, using the message you originally wrote. <9> switch to the master branch. -<10> merge a topic branch into your master branch +<10> merge a topic branch into your master branch. You can also use +`git pull . alsa-audio`, i.e. pull from the local repository. <11> review commit logs; other forms to limit output can be -combined and include --max-count=10 (show 10 commits), --until='2005-12-10'. -<12> view only the changes that touch what's in curses/ -directory, since v2.43 tag. +combined and include `\--max-count=10` (show 10 commits), +`\--until=2005-12-10`, etc. +<12> view only the changes that touch what's in `curses/` +directory, since `v2.43` tag. Individual Developer (Participant)[[Individual Developer (Participant)]] @@ -193,7 +193,7 @@ $ git fetch --tags <8> + <1> repeat as needed. <2> extract patches from your branch for e-mail submission. -<3> "pull" fetches from "origin" by default and merges into the +<3> `git pull` fetches from `origin` by default and merges into the current branch. <4> immediately after pulling, look at the changes done upstream since last time we checked, only in the @@ -201,37 +201,41 @@ area we are interested in. <5> fetch from a specific branch from a specific repository and merge. <6> revert the pull. <7> garbage collect leftover objects from reverted pull. -<8> from time to time, obtain official tags from the "origin" -and store them under .git/refs/tags/. +<8> from time to time, obtain official tags from the `origin` +and store them under `.git/refs/tags/`. Push into another repository.:: + ------------ -satellite$ git clone mothership:frotz/.git frotz <1> +satellite$ git clone mothership:frotz frotz <1> satellite$ cd frotz -satellite$ cat .git/remotes/origin <2> -URL: mothership:frotz/.git -Pull: master:origin -satellite$ echo 'Push: master:satellite' >>.git/remotes/origin <3> +satellite$ git repo-config --get-regexp '^(remote|branch)\.' <2> +remote.origin.url mothership:frotz +remote.origin.fetch refs/heads/*:refs/remotes/origin/* +branch.master.remote origin +branch.master.merge refs/heads/master +satellite$ git repo-config remote.origin.push \ + master:refs/remotes/satellite/master <3> satellite$ edit/compile/test/commit satellite$ git push origin <4> mothership$ cd frotz mothership$ git checkout master -mothership$ git pull . satellite <5> +mothership$ git merge satellite/master <5> ------------ + <1> mothership machine has a frotz repository under your home directory; clone from it to start a repository on the satellite machine. -<2> clone creates this file by default. It arranges "git pull" -to fetch and store the master branch head of mothership machine -to local "origin" branch. -<3> arrange "git push" to push local "master" branch to -"satellite" branch of the mothership machine. -<4> push will stash our work away on "satellite" branch on the -mothership machine. You could use this as a back-up method. +<2> clone sets these configuration variables by default. +It arranges `git pull` to fetch and store the branches of mothership +machine to local `remotes/origin/*` tracking branches. +<3> arrange `git push` to push local `master` branch to +`remotes/satellite/master` branch of the mothership machine. +<4> push will stash our work away on `remotes/satellite/master` +tracking branch on the mothership machine. You could use this as +a back-up method. <5> on mothership machine, merge the work done on the satellite machine into the master branch. @@ -247,7 +251,7 @@ $ git format-patch -k -m --stdout v2.6.14..private2.6.14 | + <1> create a private branch based on a well known (but somewhat behind) tag. -<2> forward port all changes in private2.6.14 branch to master branch +<2> forward port all changes in `private2.6.14` branch to `master` branch without a formal "merging". @@ -284,13 +288,13 @@ $ mailx <3> & s 2 3 4 5 ./+to-apply & s 7 8 ./+hold-linus & q -$ git checkout master +$ git checkout -b topic/one master $ git am -3 -i -s -u ./+to-apply <4> $ compile/test $ git checkout -b hold/linus && git am -3 -i -s -u ./+hold-linus <5> $ git checkout topic/one && git rebase master <6> -$ git checkout pu && git reset --hard master <7> -$ git pull . topic/one topic/two && git pull . hold/linus <8> +$ git checkout pu && git reset --hard next <7> +$ git merge topic/one topic/two && git merge hold/linus <8> $ git checkout maint $ git cherry-pick master~4 <9> $ compile/test @@ -307,29 +311,32 @@ they are. that are not quite ready. <4> apply them, interactively, with my sign-offs. <5> create topic branch as needed and apply, again with my -sign-offs. +sign-offs. <6> rebase internal topic branch that has not been merged to the master, nor exposed as a part of a stable branch. -<7> restart "pu" every time from the master. +<7> restart `pu` every time from the next. <8> and bundle topic branches still cooking. <9> backport a critical fix. <10> create a signed tag. <11> make sure I did not accidentally rewind master beyond what I -already pushed out. "ko" shorthand points at the repository I have +already pushed out. `ko` shorthand points at the repository I have at kernel.org, and looks like this: + ------------ $ cat .git/remotes/ko URL: kernel.org:/pub/scm/git/git.git Pull: master:refs/tags/ko-master +Pull: next:refs/tags/ko-next Pull: maint:refs/tags/ko-maint Push: master +Push: next Push: +pu Push: maint ------------ + -In the output from "git show-branch", "master" should have -everything "ko-master" has. +In the output from `git show-branch`, `master` should have +everything `ko-master` has, and `next` should have +everything `ko-next` has. <12> push out the bleeding edge. <13> push the tag out, too. @@ -406,7 +413,7 @@ $ grep git /etc/shells <2> ------------ + <1> log-in shell is set to /usr/bin/git-shell, which does not -allow anything but "git push" and "git pull". The users should +allow anything but `git push` and `git pull`. The users should get an ssh access to the machine. <2> in many distributions /etc/shells needs to list what is used as the login shell. diff --git a/git-count-objects.html b/git-count-objects.html index 53928170c..b09d7db8c 100644 --- a/git-count-objects.html +++ b/git-count-objects.html @@ -289,8 +289,8 @@ them, to help you decide when it is a good time to repack.

      In addition to the number of loose objects and disk space consumed, it reports the number of in-pack - objects, and number of objects that can be removed by - running git-prune-packed. + objects, number of packs, and number of objects that can be + removed by running git-prune-packed.

    @@ -309,7 +309,7 @@ them, to help you decide when it is a good time to repack.

    diff --git a/git-count-objects.txt b/git-count-objects.txt index 198ce77a8..c59df6438 100644 --- a/git-count-objects.txt +++ b/git-count-objects.txt @@ -20,8 +20,8 @@ OPTIONS -v:: In addition to the number of loose objects and disk space consumed, it reports the number of in-pack - objects, and number of objects that can be removed by - running `git-prune-packed`. + objects, number of packs, and number of objects that can be + removed by running `git-prune-packed`. Author diff --git a/git-reflog.html b/git-reflog.html new file mode 100644 index 000000000..3f15425d0 --- /dev/null +++ b/git-reflog.html @@ -0,0 +1,342 @@ + + + + + + +git-reflog(1) + + + +

    SYNOPSIS

    +
    +
    +
    git-reflog expire [--dry-run] + [--expire=<time>] [--expire-unreachable=<time>] [--all] <refs>…
    +
    +

    DESCRIPTION

    +
    +

    Reflog is a mechanism to record when the tip of branches are +updated. This command is to manage the information recorded in it.

    +

    The subcommand "expire" is used to prune older reflog entries. +Entries older than expire time, or entries older than +expire-unreachable time and are not reachable from the current +tip, are removed from the reflog. This is typically not used +directly by the end users — instead, see git-gc(1).

    +
    +

    OPTIONS

    +
    +
    +
    +--expire=<time> +
    +
    +

    + Entries older than this time are pruned. Without the + option it is taken from configuration gc.reflogExpire, + which in turn defaults to 90 days. +

    +
    +
    +--expire-unreachable=<time> +
    +
    +

    + Entries older than this time and are not reachable from + the current tip of the branch are pruned. Without the + option it is taken from configuration + gc.reflogExpireUnreachable, which in turn defaults to + 30 days. +

    +
    +
    +--all +
    +
    +

    + Instead of listing <refs> explicitly, prune all refs. +

    +
    +
    +
    +

    Author

    +
    +

    Written by Junio C Hamano <junkio@cox.net>

    +
    +

    Documentation

    +
    +

    Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.

    +
    +

    GIT

    +
    +

    Part of the git(7) suite

    +
    + + + diff --git a/git-reflog.txt b/git-reflog.txt new file mode 100644 index 000000000..55a24d326 --- /dev/null +++ b/git-reflog.txt @@ -0,0 +1,59 @@ +git-reflog(1) +============= + +NAME +---- +git-reflog - Manage reflog information + + +SYNOPSIS +-------- +[verse] +'git-reflog' expire [--dry-run] + [--expire=