Change the use of the git:// protocol for msysGit submodules to the
https:// protocol, so that developers behind firewalls who have
installed msysGit-netinstall or -fullinstall are not discouraged from
hacking on Git because 'git submodule update' fails to run. Use the
https:// protocol instead of the http:// protocol so that the
developers are eventually able to push their changes back to origin.
The performance penalty for downgrading from the git:// protocol to the
https:// protocol is minimal, given that msysGit now uses a smart-HTTP-
aware Git.
Signed-off-by: Peter Klavins <klavins@netspace.net.au>
In his latest "What's cooking in git.git" message (Nov 2011, #02; Sun, 6)
J.C.Hamano announced the availability of the documentation
branches (html, doc) in dedicated repositories at github.com.
Change .gitmodules to point 'doc/git/html' to the new repository.
Signed-off-by: Stefan Naewe <stefan.naewe@gmail.com>
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
The installers are not changed, so this submodule is not checked out
by default. But its presence alone should make it easier for new
developers, as well as making git-cheetah a bit more visible.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
We do not want to generate the html documentation in msysgit
but instead take the autogenerated documentation from Junio's
repo. This avoids having to integrate the complete toolchain
with msysgit.
So register a submodule at path doc/git/html, which points to
the html pages for 1.5.3 (which is our current git version in
msysgit).
To actually checkout the html pages you need to run
git-submodule init
git-submodule update doc/git/html
Signed-off-by: Steffen Prohaska <prohaska@zib.de>
This initializes an independent branch, the way it should have been, with
git/ as a subproject.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>