Skip to content

Commit

Permalink
Update protocol on git submodule URLs
Browse files Browse the repository at this point in the history
Not everywhere the needed ssh/git ports are available (e.g. behind firewall).
Changing the protocol to https:// allows for easier cloning of the repository.
  • Loading branch information
lichesser committed Jul 31, 2014
1 parent 8011a55 commit 1973597
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .gitmodules
@@ -1,12 +1,12 @@
[submodule "node_modules/extend"]
path = node_modules/extend
url = git://github.com/dreamerslab/node.extend.git
url = https://github.com/dreamerslab/node.extend.git
[submodule "node_modules/restler"]
path = node_modules/restler
url = git@github.com:danwrong/restler.git
url = https://github.com/danwrong/restler.git
[submodule "node_modules/xml2js"]
path = node_modules/xml2js
url = git@github.com:Leonidas-from-XIV/node-xml2js.git
url = https://github.com/Leonidas-from-XIV/node-xml2js.git
[submodule "node_modules/sax"]
path = node_modules/sax
url = git@github.com:isaacs/sax-js.git
url = https://github.com/isaacs/sax-js.git

0 comments on commit 1973597

Please sign in to comment.