git-svn.git  about / heads / tags
git-svn dev repo, rebased against Junio's git.git master
$ git log --pretty=format:'%h %s (%cs)%d' v2.5.0-rc1 --
cbed29f37b Git 2.5.0-rc1 (2015-07-01)
	(tag: v2.5.0-rc1)
58eb0122f3 Merge branch 'me/fetch-into-shallow-safety' (2015-07-01)
d70bc3b97a Merge branch 'jc/prompt-document-ps1-state-separator' (2015-07-01)
15b3f71148 Merge branch 'mm/describe-doc' (2015-07-01)
a225a26010 Merge branch 'da/mergetool-winmerge' (2015-07-01)
912bd497e9 Sync with maint (2015-06-28)
351d06df51 Merge branch 'jk/stash-require-clean-index' into maint (2015-06-25)
b1f0802e91 Merge branch 'cb/array-size' into maint (2015-06-25)
7ecec52d42 Git 2.5.0-rc0 (2015-06-25)
	(tag: v2.5.0-rc0)
c82b6d3f4b Merge branch 'cn/cvsimport-perl-update' (2015-06-25)
...

$ git cat-file blob v2.5.0-rc1:README
////////////////////////////////////////////////////////////////

	Git - the stupid content tracker

////////////////////////////////////////////////////////////////

"git" can mean anything, depending on your mood.

 - random three-letter combination that is pronounceable, and not
   actually used by any common UNIX command.  The fact that it is a
   mispronunciation of "get" may or may not be relevant.
 - stupid. contemptible and despicable. simple. Take your pick from the
   dictionary of slang.
 - "global information tracker": you're in a good mood, and it actually
   works for you. Angels sing, and a light suddenly fills the room.
 - "goddamn idiotic truckload of sh*t": when it breaks

Git is a fast, scalable, distributed revision control system with an
unusually rich command set that provides both high-level operations
and full access to internals.

Git is an Open Source project covered by the GNU General Public
License version 2 (some parts of it are under different licenses,
compatible with the GPLv2). It was originally written by Linus
Torvalds with help of a group of hackers around the net.

Please read the file INSTALL for installation instructions.

See Documentation/gittutorial.txt to get started, then see
Documentation/giteveryday.txt for a useful minimum set of commands, and
Documentation/git-commandname.txt for documentation of each command.
If git has been correctly installed, then the tutorial can also be
read with "man gittutorial" or "git help tutorial", and the
documentation of each command with "man git-commandname" or "git help
commandname".

CVS users may also want to read Documentation/gitcvs-migration.txt
("man gitcvs-migration" or "git help cvs-migration" if git is
installed).

Many Git online resources are accessible from http://git-scm.com/
including full documentation and Git related tools.

The user discussion and development of Git take place on the Git
mailing list -- everyone is welcome to post bug reports, feature
requests, comments and patches to git@vger.kernel.org (read
Documentation/SubmittingPatches for instructions on patch submission).
To subscribe to the list, send an email with just "subscribe git" in
the body to majordomo@vger.kernel.org. The mailing list archives are
available at http://news.gmane.org/gmane.comp.version-control.git/,
http://marc.info/?l=git and other archival sites.

The maintainer frequently sends the "What's cooking" reports that
list the current status of various development topics to the mailing
list.  The discussion following them give a good reference for
project status, development direction and remaining tasks.

# heads (aka `branches'):
$ git for-each-ref --sort=-creatordate refs/heads \
	--format='%(HEAD) %(refname:short) %(subject) (%(creatordate:short))'
  many-alt-v2  oidtree: a crit-bit tree for odb_loose_cache (2021-06-29)
  mmap-retry-v1 xmmap: inform Linux users of tuning knobs on ENOMEM (2021-06-29)
  hashmap-wip-v3 hashmap_entry: remove first member requirement from docs (2019-10-06)
  hashmap-wip-v2 hashmap: remove type arg from hashmap_{get,put,remove}_entry (2019-09-24)
  hashmap-wip-v1 hashmap_get_next returns "struct hashmap_entry *" (2019-08-26)
  hashmap-wip-base First batch after Git 2.23 (2019-08-22)
  svn/doc      git-svn: commit-diff does not support --add-author-from (2018-04-16)
  svn/authors-prog-2 git-svn: allow empty email-address using authors-prog and authors-file (2018-04-05)
  svn-branch-segfault git-svn: control destruction order to avoid segfault (2018-01-29)
  svn-crlf     git-svn: convert CRLF to LF in commit message to SVN (2017-12-14)
...

# tags:
$ git for-each-ref --sort=-creatordate refs/tags \
	--format='%(refname:short) %(subject) (%(creatordate:short))'
v2.24.0      Git 2.24 (2019-11-04) tar.gz
v2.24.0-rc2  Git 2.24-rc2 (2019-10-30) tar.gz
v2.24.0-rc1  Git 2.24-rc1 (2019-10-24) tar.gz
v2.24.0-rc0  Git 2.24-rc0 (2019-10-18) tar.gz
v2.23.0      Git 2.23 (2019-08-16) tar.gz
v2.22.1      Git 2.22.1 (2019-08-11) tar.gz
v2.23.0-rc2  Git 2.23-rc2 (2019-08-09) tar.gz
v2.23.0-rc1  Git 2.23-rc1 (2019-08-02) tar.gz
v2.23.0-rc0  Git 2.23-rc0 (2019-07-29) tar.gz
v2.22.0      Git 2.22 (2019-06-07) tar.gz
...

git clone https://yhbt.net/git-svn.git