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'
16fbca07e2 doc: describe git svn init --ignore-refs (2017-06-07)
	(HEAD -> master)
8d1b10321b Sync with maint (2017-06-07)
76339527cc Merge branch 'ab/sha1dc-maint' into maint (2017-06-07)
6b851e536b sha1dc: update from upstream (2017-06-07)
5d184f468e sha1dc: ignore indent-with-non-tab whitespace violations (2017-06-07)
69e6b9b4f4 Sync with v2.13.1 (2017-06-05)
b3a847d1db Seventh batch for 2.14 (2017-06-05)
ac935fca90 Merge branch 'ad/pull-remote-doc' (2017-06-05)
35898eafab Merge branch 'tb/pull-ff-rebase-autostash' (2017-06-05)
6e9b0108c6 Merge branch 'jk/drop-free-refspecs' (2017-06-05)
...

$ git cat-file blob HEAD:README.md
Git - fast, scalable, distributed revision control system
=========================================================

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.

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

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).

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 <https://public-inbox.org/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.

The name "git" was given by Linus Torvalds when he wrote the very
first version. He described the tool as "the stupid content tracker"
and the name as (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

[INSTALL]: INSTALL
[Documentation/gittutorial.txt]: Documentation/gittutorial.txt
[Documentation/giteveryday.txt]: Documentation/giteveryday.txt
[Documentation/gitcvs-migration.txt]: Documentation/gitcvs-migration.txt
[Documentation/SubmittingPatches]: Documentation/SubmittingPatches

# 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