Marc:
What should we do after building 4.6.5 to get "make update" to work? I get
[Bradley-Luciers-MacBook-Pro:~/programs/gambc-v4_6_5-devel] lucier% make update The authenticity of host 'github.com (207.97.227.239)' can't be established. RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added 'github.com,207.97.227.239' (RSA) to the list of known hosts. Permission denied (publickey). fatal: The remote end hung up unexpectedly Permission denied (publickey). fatal: The remote end hung up unexpectedly make: *** [pull] Error 128 [Bradley-Luciers-MacBook-Pro:~/programs/gambc-v4_6_5-devel] lucier% make update Permission denied (publickey). fatal: The remote end hung up unexpectedly Permission denied (publickey). fatal: The remote end hung up unexpectedly make: *** [pull] Error 128
Thanks.
Brad
Afficher les réponses par date
Hallo,
On Sun, Mar 25, 2012 at 7:53 AM, Bradley Lucier lucier@math.purdue.edu wrote:
Marc:
What should we do after building 4.6.5 to get "make update" to work? I get
The configuration for git in the tarball is suited for those who has read+write access to the repository. For us, we need to edit `.git/config` so that it reads:
[remote "origin"] url = https://github.com/feeley/gambit.git fetch = +refs/heads/*:refs/remotes/origin/*
Cheers,
On Mar 25, 2012, at 2:31 PM, Alex Queiroz wrote:
Hallo,
On Sun, Mar 25, 2012 at 7:53 AM, Bradley Lucier lucier@math.purdue.edu wrote:
Marc:
What should we do after building 4.6.5 to get "make update" to work? I get
The configuration for git in the tarball is suited for those who has read+write access to the repository. For us, we need to edit `.git/config` so that it reads:
[remote "origin"] url = https://github.com/feeley/gambit.git fetch = +refs/heads/*:refs/remotes/origin/*
Thanks, after I make that change I get
[Bradley-Luciers-MacBook-Pro:~/programs/gambc-v4_6_5-devel] lucier% make update fatal: https://github.com:feeley/gambit.git/info/refs not found: did you run git update-server-info on the server? fatal: https://github.com:feeley/gambit.git/info/refs not found: did you run git update-server-info on the server? make: *** [pull] Error 128
On 2012-03-28, at 11:16 PM, Bradley Lucier wrote:
On Mar 25, 2012, at 2:31 PM, Alex Queiroz wrote:
Hallo,
On Sun, Mar 25, 2012 at 7:53 AM, Bradley Lucier lucier@math.purdue.edu wrote:
Marc:
What should we do after building 4.6.5 to get "make update" to work? I get
The configuration for git in the tarball is suited for those who has read+write access to the repository. For us, we need to edit `.git/config` so that it reads:
[remote "origin"] url = https://github.com/feeley/gambit.git fetch = +refs/heads/*:refs/remotes/origin/*
Thanks, after I make that change I get
[Bradley-Luciers-MacBook-Pro:~/programs/gambc-v4_6_5-devel] lucier% make update fatal:https://github.com:feeley/gambit.git/info/refs not found: did you run git update-server-info on the server? fatal: https://github.com:feeley/gambit.git/info/refs not found: did you run git update-server-info on the server? make: *** [pull] Error 128
The URL should be
https://github.com/feeley/gambit.git/info/refs
but the URL in your error messages has a ":" just before "feeley" instead of a slash. I don't know why.
Marc
On Mar 28, 2012, at 11:21 PM, Marc Feeley wrote:
The URL should be
https://github.com/feeley/gambit.git/info/refs
but the URL in your error messages has a ":" just before "feeley" instead of a slash. I don't know why.
Why, that would be because I can't type and chew gum at the same time.
Things work now, thanks.
Brad
On 2012-03-29, at 5:55 AM, Bradley Lucier wrote:
On Mar 28, 2012, at 11:21 PM, Marc Feeley wrote:
The URL should be
https://github.com/feeley/gambit.git/info/refs
but the URL in your error messages has a ":" just before "feeley" instead of a slash. I don't know why.
Why, that would be because I can't type and chew gum at the same time.
Things work now, thanks.
Brad
For your information, I am working on a solution to the incompleteness of the github repo (lack of .c files generated by the compiler). I think I have a solution which will allow the normal build steps (./configure;make) after cloning the repo. This will make Gambit more accessible to newbies (and oldies).
Marc