nvie / gitflow

Git extensions to provide high-level repository operations for Vincent Driessen's branching model.
http://nvie.com/posts/a-successful-git-branching-model/
Other
26.63k stars 2.66k forks source link

Making the submodule accessible behind a proxy (via https://) #6372

Open peter-lyons-kehl opened 8 years ago

peter-lyons-kehl commented 8 years ago

Hi Vincent,

Thank you for GitFlow.

Currently, people can't recursively clone GitFlow behind a proxy. Even if they run

git clone --recursive https://github.com/nvie/gitflow.git

the submodule was accessed via git:// - (behind a proxy) it fails.

In addition to this pull request, would you update https://github.com/nvie/gitflow/wiki/Manual-installation:

change from
git clone --recursive git://github.com/nvie/gitflow.git

to
git clone --recursive https://github.com/nvie/gitflow.git

This may be related to https://github.com/nvie/gitflow/issues/104 - I'm not sure.