2013-01-21 20:16:20 +01:00
|
|
|
Everyday Git With 20 Commands Or So
|
2005-12-10 08:07:29 +01:00
|
|
|
===================================
|
|
|
|
|
2009-10-21 22:02:48 +02:00
|
|
|
<<Individual Developer (Standalone)>> commands are essential for
|
|
|
|
anybody who makes a commit, even for somebody who works alone.
|
2005-12-10 08:07:29 +01:00
|
|
|
|
|
|
|
If you work with other people, you will need commands listed in
|
2006-10-26 04:43:47 +02:00
|
|
|
the <<Individual Developer (Participant)>> section as well.
|
2005-12-10 08:07:29 +01:00
|
|
|
|
2006-10-26 04:43:47 +02:00
|
|
|
People who play the <<Integrator>> role need to learn some more
|
2005-12-10 08:07:29 +01:00
|
|
|
commands in addition to the above.
|
|
|
|
|
|
|
|
<<Repository Administration>> commands are for system
|
2006-10-26 04:43:47 +02:00
|
|
|
administrators who are responsible for the care and feeding
|
2013-01-21 20:17:53 +01:00
|
|
|
of Git repositories.
|
2005-12-10 08:07:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
Individual Developer (Standalone)[[Individual Developer (Standalone)]]
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
A standalone individual developer does not exchange patches with
|
2006-05-29 23:11:28 +02:00
|
|
|
other people, and works alone in a single repository, using the
|
2005-12-10 08:07:29 +01:00
|
|
|
following commands.
|
|
|
|
|
2009-10-21 22:02:48 +02:00
|
|
|
* linkgit:git-init[1] to create a new repository.
|
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-show-branch[1] to see where you are.
|
2005-12-10 08:07:29 +01:00
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-log[1] to see what happened.
|
2005-12-10 08:07:29 +01:00
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-checkout[1] and linkgit:git-branch[1] to switch
|
2005-12-10 08:07:29 +01:00
|
|
|
branches.
|
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-add[1] to manage the index file.
|
2005-12-13 01:20:21 +01:00
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-diff[1] and linkgit:git-status[1] to see what
|
2005-12-13 01:20:21 +01:00
|
|
|
you are in the middle of doing.
|
2005-12-10 08:07:29 +01:00
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-commit[1] to advance the current branch.
|
2005-12-10 08:07:29 +01:00
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-reset[1] and linkgit:git-checkout[1] (with
|
2005-12-10 08:07:29 +01:00
|
|
|
pathname parameters) to undo changes.
|
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-merge[1] to merge between local branches.
|
2005-12-10 08:07:29 +01:00
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-rebase[1] to maintain topic branches.
|
2005-12-10 08:07:29 +01:00
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-tag[1] to mark known point.
|
2005-12-10 08:07:29 +01:00
|
|
|
|
2005-12-13 01:20:21 +01:00
|
|
|
Examples
|
|
|
|
~~~~~~~~
|
|
|
|
|
2006-12-27 07:42:33 +01:00
|
|
|
Use a tarball as a starting point for a new repository.::
|
2005-12-13 08:24:06 +01:00
|
|
|
+
|
2005-12-13 01:20:21 +01:00
|
|
|
------------
|
|
|
|
$ tar zxf frotz.tar.gz
|
|
|
|
$ cd frotz
|
2009-03-22 10:15:13 +01:00
|
|
|
$ git init
|
2005-12-13 03:29:53 +01:00
|
|
|
$ git add . <1>
|
2007-11-02 18:12:57 +01:00
|
|
|
$ git commit -m "import of frotz source tree."
|
2005-12-13 03:29:53 +01:00
|
|
|
$ git tag v2.43 <2>
|
2006-04-28 15:15:05 +02:00
|
|
|
------------
|
|
|
|
+
|
2005-12-13 03:29:53 +01:00
|
|
|
<1> add everything under the current directory.
|
|
|
|
<2> make a lightweight, unannotated tag.
|
2005-12-13 01:20:21 +01:00
|
|
|
|
2005-12-14 09:42:45 +01:00
|
|
|
Create a topic branch and develop.::
|
2005-12-13 08:24:06 +01:00
|
|
|
+
|
2005-12-13 01:20:21 +01:00
|
|
|
------------
|
2005-12-13 03:29:53 +01:00
|
|
|
$ git checkout -b alsa-audio <1>
|
|
|
|
$ edit/compile/test
|
|
|
|
$ git checkout -- curses/ux_audio_oss.c <2>
|
|
|
|
$ git add curses/ux_audio_alsa.c <3>
|
|
|
|
$ edit/compile/test
|
2006-12-27 07:42:33 +01:00
|
|
|
$ git diff HEAD <4>
|
2005-12-13 03:29:53 +01:00
|
|
|
$ git commit -a -s <5>
|
2005-12-13 01:20:21 +01:00
|
|
|
$ edit/compile/test
|
2005-12-13 03:29:53 +01:00
|
|
|
$ git reset --soft HEAD^ <6>
|
2005-12-13 01:20:21 +01:00
|
|
|
$ edit/compile/test
|
2005-12-13 03:29:53 +01:00
|
|
|
$ git diff ORIG_HEAD <7>
|
|
|
|
$ git commit -a -c ORIG_HEAD <8>
|
|
|
|
$ git checkout master <9>
|
2006-12-27 07:42:33 +01:00
|
|
|
$ git merge alsa-audio <10>
|
2005-12-13 03:29:53 +01:00
|
|
|
$ git log --since='3 days ago' <11>
|
|
|
|
$ git log v2.43.. curses/ <12>
|
2006-04-28 15:15:05 +02:00
|
|
|
------------
|
|
|
|
+
|
2005-12-13 03:29:53 +01:00
|
|
|
<1> create a new topic branch.
|
2006-12-27 07:42:33 +01:00
|
|
|
<2> revert your botched changes in `curses/ux_audio_oss.c`.
|
2013-01-21 20:17:53 +01:00
|
|
|
<3> you need to tell Git if you added a new file; removal and
|
2006-12-27 07:42:33 +01:00
|
|
|
modification will be caught if you do `git commit -a` later.
|
2005-12-13 03:29:53 +01:00
|
|
|
<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.
|
|
|
|
<7> look at the changes since the premature commit we took back.
|
|
|
|
<8> redo the commit undone in the previous step, using the message
|
|
|
|
you originally wrote.
|
|
|
|
<9> switch to the master branch.
|
2007-01-15 04:44:18 +01:00
|
|
|
<10> merge a topic branch into your master branch.
|
2005-12-14 09:42:45 +01:00
|
|
|
<11> review commit logs; other forms to limit output can be
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 10:51:57 +02:00
|
|
|
combined and include `--max-count=10` (show 10 commits),
|
|
|
|
`--until=2005-12-10`, etc.
|
2006-12-27 07:42:33 +01:00
|
|
|
<12> view only the changes that touch what's in `curses/`
|
|
|
|
directory, since `v2.43` tag.
|
2005-12-13 01:20:21 +01:00
|
|
|
|
|
|
|
|
2005-12-10 08:07:29 +01:00
|
|
|
Individual Developer (Participant)[[Individual Developer (Participant)]]
|
|
|
|
------------------------------------------------------------------------
|
|
|
|
|
|
|
|
A developer working as a participant in a group project needs to
|
|
|
|
learn how to communicate with others, and uses these commands in
|
|
|
|
addition to the ones needed by a standalone developer.
|
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-clone[1] from the upstream to prime your local
|
2005-12-14 09:42:45 +01:00
|
|
|
repository.
|
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-pull[1] and linkgit:git-fetch[1] from "origin"
|
2005-12-14 09:42:45 +01:00
|
|
|
to keep up-to-date with the upstream.
|
2005-12-10 08:07:29 +01:00
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-push[1] to shared repository, if you adopt CVS
|
2005-12-10 08:07:29 +01:00
|
|
|
style shared repository workflow.
|
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-format-patch[1] to prepare e-mail submission, if
|
2005-12-10 08:07:29 +01:00
|
|
|
you adopt Linux kernel-style public forum workflow.
|
|
|
|
|
2005-12-13 01:20:21 +01:00
|
|
|
Examples
|
|
|
|
~~~~~~~~
|
|
|
|
|
2005-12-14 09:42:45 +01:00
|
|
|
Clone the upstream and work on it. Feed changes to upstream.::
|
2005-12-13 08:24:06 +01:00
|
|
|
+
|
2005-12-13 01:20:21 +01:00
|
|
|
------------
|
|
|
|
$ git clone git://git.kernel.org/pub/scm/.../torvalds/linux-2.6 my2.6
|
|
|
|
$ cd my2.6
|
|
|
|
$ edit/compile/test; git commit -a -s <1>
|
2005-12-13 08:24:06 +01:00
|
|
|
$ git format-patch origin <2>
|
2005-12-13 01:20:21 +01:00
|
|
|
$ git pull <3>
|
2006-10-26 04:43:47 +02:00
|
|
|
$ git log -p ORIG_HEAD.. arch/i386 include/asm-i386 <4>
|
2005-12-13 03:29:53 +01:00
|
|
|
$ git pull git://git.kernel.org/pub/.../jgarzik/libata-dev.git ALL <5>
|
|
|
|
$ git reset --hard ORIG_HEAD <6>
|
2008-04-14 14:17:31 +02:00
|
|
|
$ git gc <7>
|
2005-12-14 09:42:45 +01:00
|
|
|
$ git fetch --tags <8>
|
2006-04-28 15:15:05 +02:00
|
|
|
------------
|
|
|
|
+
|
2005-12-13 01:20:21 +01:00
|
|
|
<1> repeat as needed.
|
|
|
|
<2> extract patches from your branch for e-mail submission.
|
2006-12-27 07:42:33 +01:00
|
|
|
<3> `git pull` fetches from `origin` by default and merges into the
|
2005-12-18 21:11:27 +01:00
|
|
|
current branch.
|
|
|
|
<4> immediately after pulling, look at the changes done upstream
|
|
|
|
since last time we checked, only in the
|
2005-12-13 03:29:53 +01:00
|
|
|
area we are interested in.
|
2005-12-18 21:11:27 +01:00
|
|
|
<5> fetch from a specific branch from a specific repository and merge.
|
2005-12-13 03:29:53 +01:00
|
|
|
<6> revert the pull.
|
|
|
|
<7> garbage collect leftover objects from reverted pull.
|
2006-12-27 07:42:33 +01:00
|
|
|
<8> from time to time, obtain official tags from the `origin`
|
|
|
|
and store them under `.git/refs/tags/`.
|
2005-12-14 09:42:45 +01:00
|
|
|
|
|
|
|
|
|
|
|
Push into another repository.::
|
|
|
|
+
|
|
|
|
------------
|
2006-12-27 07:42:33 +01:00
|
|
|
satellite$ git clone mothership:frotz frotz <1>
|
2005-12-14 09:42:45 +01:00
|
|
|
satellite$ cd frotz
|
2007-01-29 01:16:53 +01:00
|
|
|
satellite$ git config --get-regexp '^(remote|branch)\.' <2>
|
2006-12-27 07:42:33 +01:00
|
|
|
remote.origin.url mothership:frotz
|
|
|
|
remote.origin.fetch refs/heads/*:refs/remotes/origin/*
|
|
|
|
branch.master.remote origin
|
|
|
|
branch.master.merge refs/heads/master
|
2007-01-29 01:16:53 +01:00
|
|
|
satellite$ git config remote.origin.push \
|
2006-12-27 07:42:33 +01:00
|
|
|
master:refs/remotes/satellite/master <3>
|
2005-12-14 09:42:45 +01:00
|
|
|
satellite$ edit/compile/test/commit
|
|
|
|
satellite$ git push origin <4>
|
|
|
|
|
|
|
|
mothership$ cd frotz
|
|
|
|
mothership$ git checkout master
|
2006-12-27 07:42:33 +01:00
|
|
|
mothership$ git merge satellite/master <5>
|
2006-04-28 15:15:05 +02:00
|
|
|
------------
|
|
|
|
+
|
2005-12-14 09:42:45 +01:00
|
|
|
<1> mothership machine has a frotz repository under your home
|
|
|
|
directory; clone from it to start a repository on the satellite
|
|
|
|
machine.
|
2006-12-27 07:42:33 +01:00
|
|
|
<2> clone sets these configuration variables by default.
|
|
|
|
It arranges `git pull` to fetch and store the branches of mothership
|
2010-11-02 16:31:22 +01:00
|
|
|
machine to local `remotes/origin/*` remote-tracking branches.
|
2006-12-27 07:42:33 +01:00
|
|
|
<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`
|
2010-11-02 16:31:22 +01:00
|
|
|
remote-tracking branch on the mothership machine. You could use this
|
|
|
|
as a back-up method.
|
2005-12-14 09:42:45 +01:00
|
|
|
<5> on mothership machine, merge the work done on the satellite
|
|
|
|
machine into the master branch.
|
2005-12-13 01:20:21 +01:00
|
|
|
|
2005-12-14 09:42:45 +01:00
|
|
|
Branch off of a specific tag.::
|
2005-12-13 08:24:06 +01:00
|
|
|
+
|
2005-12-13 01:20:21 +01:00
|
|
|
------------
|
|
|
|
$ git checkout -b private2.6.14 v2.6.14 <1>
|
|
|
|
$ edit/compile/test; git commit -a
|
|
|
|
$ git checkout master
|
|
|
|
$ git format-patch -k -m --stdout v2.6.14..private2.6.14 |
|
|
|
|
git am -3 -k <2>
|
2006-04-28 15:15:05 +02:00
|
|
|
------------
|
|
|
|
+
|
2005-12-13 01:20:21 +01:00
|
|
|
<1> create a private branch based on a well known (but somewhat behind)
|
|
|
|
tag.
|
2006-12-27 07:42:33 +01:00
|
|
|
<2> forward port all changes in `private2.6.14` branch to `master` branch
|
2005-12-13 03:29:53 +01:00
|
|
|
without a formal "merging".
|
2005-12-13 01:20:21 +01:00
|
|
|
|
|
|
|
|
2005-12-10 08:07:29 +01:00
|
|
|
Integrator[[Integrator]]
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
A fairly central person acting as the integrator in a group
|
|
|
|
project receives changes made by others, reviews and integrates
|
|
|
|
them and publishes the result for others to use, using these
|
|
|
|
commands in addition to the ones needed by participants.
|
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-am[1] to apply patches e-mailed in from your
|
2005-12-10 08:07:29 +01:00
|
|
|
contributors.
|
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-pull[1] to merge from your trusted lieutenants.
|
2005-12-10 08:07:29 +01:00
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-format-patch[1] to prepare and send suggested
|
2005-12-10 08:07:29 +01:00
|
|
|
alternative to contributors.
|
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-revert[1] to undo botched commits.
|
2005-12-10 08:07:29 +01:00
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-push[1] to publish the bleeding edge.
|
2005-12-10 08:07:29 +01:00
|
|
|
|
|
|
|
|
2005-12-13 03:29:53 +01:00
|
|
|
Examples
|
|
|
|
~~~~~~~~
|
|
|
|
|
2013-01-21 20:16:20 +01:00
|
|
|
My typical Git day.::
|
2005-12-13 08:24:06 +01:00
|
|
|
+
|
2005-12-13 03:29:53 +01:00
|
|
|
------------
|
|
|
|
$ git status <1>
|
|
|
|
$ git show-branch <2>
|
|
|
|
$ mailx <3>
|
|
|
|
& s 2 3 4 5 ./+to-apply
|
|
|
|
& s 7 8 ./+hold-linus
|
|
|
|
& q
|
2006-12-27 07:42:33 +01:00
|
|
|
$ git checkout -b topic/one master
|
2005-12-13 03:29:53 +01:00
|
|
|
$ 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>
|
2005-12-13 08:24:06 +01:00
|
|
|
$ git checkout topic/one && git rebase master <6>
|
2006-12-27 07:42:33 +01:00
|
|
|
$ git checkout pu && git reset --hard next <7>
|
|
|
|
$ git merge topic/one topic/two && git merge hold/linus <8>
|
2005-12-13 03:29:53 +01:00
|
|
|
$ git checkout maint
|
2005-12-14 09:42:45 +01:00
|
|
|
$ git cherry-pick master~4 <9>
|
2005-12-13 03:29:53 +01:00
|
|
|
$ compile/test
|
2007-11-02 18:12:57 +01:00
|
|
|
$ git tag -s -m "GIT 0.99.9x" v0.99.9x <10>
|
2005-12-14 09:42:45 +01:00
|
|
|
$ git fetch ko && git show-branch master maint 'tags/ko-*' <11>
|
|
|
|
$ git push ko <12>
|
2005-12-13 08:24:06 +01:00
|
|
|
$ git push ko v0.99.9x <13>
|
2006-04-28 15:15:05 +02:00
|
|
|
------------
|
|
|
|
+
|
2005-12-13 03:29:53 +01:00
|
|
|
<1> see what I was in the middle of doing, if any.
|
|
|
|
<2> see what topic branches I have and think about how ready
|
|
|
|
they are.
|
|
|
|
<3> read mails, save ones that are applicable, and save others
|
|
|
|
that are not quite ready.
|
|
|
|
<4> apply them, interactively, with my sign-offs.
|
|
|
|
<5> create topic branch as needed and apply, again with my
|
2006-12-27 07:42:33 +01:00
|
|
|
sign-offs.
|
2005-12-13 08:24:06 +01:00
|
|
|
<6> rebase internal topic branch that has not been merged to the
|
|
|
|
master, nor exposed as a part of a stable branch.
|
2006-12-27 07:42:33 +01:00
|
|
|
<7> restart `pu` every time from the next.
|
2005-12-13 08:24:06 +01:00
|
|
|
<8> and bundle topic branches still cooking.
|
2005-12-14 09:42:45 +01:00
|
|
|
<9> backport a critical fix.
|
|
|
|
<10> create a signed tag.
|
2005-12-18 21:11:27 +01:00
|
|
|
<11> make sure I did not accidentally rewind master beyond what I
|
2006-12-27 07:42:33 +01:00
|
|
|
already pushed out. `ko` shorthand points at the repository I have
|
2005-12-14 09:42:45 +01:00
|
|
|
at kernel.org, and looks like this:
|
2006-06-05 04:10:33 +02:00
|
|
|
+
|
|
|
|
------------
|
|
|
|
$ cat .git/remotes/ko
|
|
|
|
URL: kernel.org:/pub/scm/git/git.git
|
|
|
|
Pull: master:refs/tags/ko-master
|
2006-12-27 07:42:33 +01:00
|
|
|
Pull: next:refs/tags/ko-next
|
2006-06-05 04:10:33 +02:00
|
|
|
Pull: maint:refs/tags/ko-maint
|
|
|
|
Push: master
|
2006-12-27 07:42:33 +01:00
|
|
|
Push: next
|
2006-06-05 04:10:33 +02:00
|
|
|
Push: +pu
|
|
|
|
Push: maint
|
|
|
|
------------
|
|
|
|
+
|
2006-12-27 07:42:33 +01:00
|
|
|
In the output from `git show-branch`, `master` should have
|
|
|
|
everything `ko-master` has, and `next` should have
|
|
|
|
everything `ko-next` has.
|
2006-06-05 04:10:33 +02:00
|
|
|
|
2005-12-14 09:42:45 +01:00
|
|
|
<12> push out the bleeding edge.
|
|
|
|
<13> push the tag out, too.
|
2005-12-13 03:29:53 +01:00
|
|
|
|
|
|
|
|
2005-12-10 08:07:29 +01:00
|
|
|
Repository Administration[[Repository Administration]]
|
|
|
|
------------------------------------------------------
|
|
|
|
|
|
|
|
A repository administrator uses the following tools to set up
|
|
|
|
and maintain access to the repository by developers.
|
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-daemon[1] to allow anonymous download from
|
2005-12-10 08:07:29 +01:00
|
|
|
repository.
|
|
|
|
|
2007-12-29 07:20:38 +01:00
|
|
|
* linkgit:git-shell[1] can be used as a 'restricted login shell'
|
2005-12-10 08:07:29 +01:00
|
|
|
for shared central repository users.
|
|
|
|
|
2013-09-06 22:03:22 +02:00
|
|
|
link:howto/update-hook-example.html[update hook howto] has a good
|
2005-12-18 21:11:27 +01:00
|
|
|
example of managing a shared central repository.
|
2005-12-10 08:07:29 +01:00
|
|
|
|
2005-12-13 08:24:06 +01:00
|
|
|
|
|
|
|
Examples
|
|
|
|
~~~~~~~~
|
2006-10-27 07:00:57 +02:00
|
|
|
We assume the following in /etc/services::
|
|
|
|
+
|
|
|
|
------------
|
|
|
|
$ grep 9418 /etc/services
|
|
|
|
git 9418/tcp # Git Version Control System
|
|
|
|
------------
|
|
|
|
|
2005-12-14 09:42:45 +01:00
|
|
|
Run git-daemon to serve /pub/scm from inetd.::
|
2005-12-13 08:24:06 +01:00
|
|
|
+
|
|
|
|
------------
|
2006-05-29 23:11:28 +02:00
|
|
|
$ grep git /etc/inetd.conf
|
2005-12-14 09:42:45 +01:00
|
|
|
git stream tcp nowait nobody \
|
2006-10-26 06:33:07 +02:00
|
|
|
/usr/bin/git-daemon git-daemon --inetd --export-all /pub/scm
|
2005-12-13 08:24:06 +01:00
|
|
|
------------
|
2005-12-14 09:42:45 +01:00
|
|
|
+
|
|
|
|
The actual configuration line should be on one line.
|
2005-12-13 08:24:06 +01:00
|
|
|
|
2006-06-05 01:53:45 +02:00
|
|
|
Run git-daemon to serve /pub/scm from xinetd.::
|
|
|
|
+
|
|
|
|
------------
|
|
|
|
$ cat /etc/xinetd.d/git-daemon
|
|
|
|
# default: off
|
2013-01-21 20:17:53 +01:00
|
|
|
# description: The Git server offers access to Git repositories
|
2006-06-05 01:53:45 +02:00
|
|
|
service git
|
|
|
|
{
|
|
|
|
disable = no
|
|
|
|
type = UNLISTED
|
|
|
|
port = 9418
|
|
|
|
socket_type = stream
|
|
|
|
wait = no
|
|
|
|
user = nobody
|
|
|
|
server = /usr/bin/git-daemon
|
2006-10-26 06:33:07 +02:00
|
|
|
server_args = --inetd --export-all --base-path=/pub/scm
|
2006-06-05 01:53:45 +02:00
|
|
|
log_on_failure += USERID
|
|
|
|
}
|
|
|
|
------------
|
|
|
|
+
|
|
|
|
Check your xinetd(8) documentation and setup, this is from a Fedora system.
|
|
|
|
Others might be different.
|
|
|
|
|
2005-12-14 09:42:45 +01:00
|
|
|
Give push/pull only access to developers.::
|
2005-12-13 08:24:06 +01:00
|
|
|
+
|
|
|
|
------------
|
2005-12-14 09:42:45 +01:00
|
|
|
$ grep git /etc/passwd <1>
|
2005-12-13 08:24:06 +01:00
|
|
|
alice:x:1000:1000::/home/alice:/usr/bin/git-shell
|
|
|
|
bob:x:1001:1001::/home/bob:/usr/bin/git-shell
|
|
|
|
cindy:x:1002:1002::/home/cindy:/usr/bin/git-shell
|
|
|
|
david:x:1003:1003::/home/david:/usr/bin/git-shell
|
2005-12-14 09:42:45 +01:00
|
|
|
$ grep git /etc/shells <2>
|
|
|
|
/usr/bin/git-shell
|
2006-04-28 15:15:05 +02:00
|
|
|
------------
|
|
|
|
+
|
2005-12-14 09:42:45 +01:00
|
|
|
<1> log-in shell is set to /usr/bin/git-shell, which does not
|
2006-12-27 07:42:33 +01:00
|
|
|
allow anything but `git push` and `git pull`. The users should
|
2005-12-14 09:42:45 +01:00
|
|
|
get an ssh access to the machine.
|
|
|
|
<2> in many distributions /etc/shells needs to list what is used
|
|
|
|
as the login shell.
|
|
|
|
|
|
|
|
CVS-style shared repository.::
|
|
|
|
+
|
|
|
|
------------
|
|
|
|
$ grep git /etc/group <1>
|
|
|
|
git:x:9418:alice,bob,cindy,david
|
|
|
|
$ cd /home/devo.git
|
|
|
|
$ ls -l <2>
|
|
|
|
lrwxrwxrwx 1 david git 17 Dec 4 22:40 HEAD -> refs/heads/master
|
|
|
|
drwxrwsr-x 2 david git 4096 Dec 4 22:40 branches
|
|
|
|
-rw-rw-r-- 1 david git 84 Dec 4 22:40 config
|
|
|
|
-rw-rw-r-- 1 david git 58 Dec 4 22:40 description
|
|
|
|
drwxrwsr-x 2 david git 4096 Dec 4 22:40 hooks
|
|
|
|
-rw-rw-r-- 1 david git 37504 Dec 4 22:40 index
|
|
|
|
drwxrwsr-x 2 david git 4096 Dec 4 22:40 info
|
|
|
|
drwxrwsr-x 4 david git 4096 Dec 4 22:40 objects
|
|
|
|
drwxrwsr-x 4 david git 4096 Nov 7 14:58 refs
|
|
|
|
drwxrwsr-x 2 david git 4096 Dec 4 22:40 remotes
|
|
|
|
$ ls -l hooks/update <3>
|
|
|
|
-r-xr-xr-x 1 david git 3536 Dec 4 22:40 update
|
|
|
|
$ cat info/allowed-users <4>
|
|
|
|
refs/heads/master alice\|cindy
|
|
|
|
refs/heads/doc-update bob
|
|
|
|
refs/tags/v[0-9]* david
|
2006-04-28 15:15:05 +02:00
|
|
|
------------
|
|
|
|
+
|
2005-12-14 09:42:45 +01:00
|
|
|
<1> place the developers into the same git group.
|
|
|
|
<2> and make the shared repository writable by the group.
|
|
|
|
<3> use update-hook example by Carl from Documentation/howto/
|
|
|
|
for branch policy control.
|
|
|
|
<4> alice and cindy can push into master, only bob can push into doc-update.
|
|
|
|
david is the release manager and is the only person who can
|
|
|
|
create and push version tags.
|
2005-12-17 20:39:39 +01:00
|
|
|
|
|
|
|
HTTP server to support dumb protocol transfer.::
|
|
|
|
+
|
|
|
|
------------
|
|
|
|
dev$ git update-server-info <1>
|
|
|
|
dev$ ftp user@isp.example.com <2>
|
|
|
|
ftp> cp -r .git /home/user/myproject.git
|
2006-04-28 15:15:05 +02:00
|
|
|
------------
|
|
|
|
+
|
2005-12-17 20:39:39 +01:00
|
|
|
<1> make sure your info/refs and objects/info/packs are up-to-date
|
|
|
|
<2> upload to public HTTP server hosted by your ISP.
|