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.6 --
ac33201285 Git 2.5.6 (2017-05-05)
	(tag: v2.5.6)
531788af95 Merge branch 'maint-2.4' into maint-2.5 (2017-05-05)
4000b40209 Git 2.4.12 (2017-05-05)
	(tag: v2.4.12)
5a4ffdf587 Merge branch 'jk/shell-no-repository-that-begins-with-dash' into maint-2.4 (2017-05-05)
3ec804490a shell: disallow repo names beginning with dash (2017-05-05)
e568e563ad Git 2.5.5 (2016-03-17)
	(tag: v2.5.5)
c638f3e4d5 Merge branch 'maint-2.4' into maint-2.5 (2016-03-17)
765428699a Git 2.4.11 (2016-03-17)
	(tag: v2.4.11)
32c6dca8c4 Merge branch 'jk/path-name-safety-2.4' into maint-2.4 (2016-03-17)
2824e1841b list-objects: pass full pathname to callbacks (2016-03-16)
...

$ git cat-file blob v2.5.6: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