Dynalon / Rainy

Simple Tomboy/Tomdroid cloud/syncing server. Written in C# with AngularJS web frontend. Supports SQLite & Postgres Backends.
http://dynalon.github.io/Rainy
GNU Affero General Public License v3.0
88 stars 15 forks source link

make checkout fails if no github ssh key is used #30

Closed Dynalon closed 10 years ago

Dynalon commented 10 years ago

The DevDefined.OAuth submodule is added with a git:// url, thus requires a known ssh key to checkout at github.

j-4 commented 10 years ago

If you cant write to this submodule anyway, you could check it out using https:// which is read only, but works with any method.

Timo Dörr notifications@github.com wrote:

The DevDefined.OAuth submodule is added with a git:// url, thus requires a known ssh key to checkout at github.


Reply to this email directly or view it on GitHub: https://github.com/Dynalon/Rainy/issues/30

twm commented 10 years ago

The submodule URL should be the HTTPS one so that checkout works out-of-the-box for those of us without access to that repo.

twm commented 10 years ago
diff --git a/.gitmodules b/.gitmodules
index 7de4d1c..1e978fc 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -6,4 +6,4 @@
        url = https://github.com/Dynalon/JsonConfig.git
 [submodule "DevDefined.OAuth"]
        path = DevDefined.OAuth
-       url = git@github.com:bittercoder/DevDefined.OAuth.git
+       url = https://github.com/bittercoder/DevDefined.OAuth.git