Re: [Rd] GitHub passwords in .git/config?

2019-07-15 Thread Spencer Graves
Thanks, Marcel:   That did it.   My next challenge is to replicate it on a Windows 10 machine.   Spencer On 2019-07-15 12:54, Marcel Ramos wrote: Hi Spencer, The first line in the `[remote "origin"]` section should read: ``` url = g...@github.com:sbgraves237/Ecdat.git

Re: [Rd] GitHub passwords in .git/config?

2019-07-15 Thread Marcel Ramos
Hi Spencer, The first line in the `[remote "origin"]` section should read: ``` url = g...@github.com:sbgraves237/Ecdat.git ``` Generally, I add these configs by doing a clone on the command line such as: > git clone > g...@github.com:sbgraves237

Re: [Rd] GitHub passwords in .git/config?

2019-07-15 Thread Spencer Graves
I'm diverging:  Now I get: >>> git pull ssh: Could not resolve hostname github.com:sbgraves237: nodename nor servname provided, or not known fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.   ** With .git/config

Re: [Rd] GitHub passwords in .git/config?

2019-07-15 Thread Brian G. Peterson
it would be: ssh://g...@github.com:sbgraves237/Ecdat.git On Mon, 2019-07-15 at 11:41 -0500, Spencer Graves wrote: > > On 2019-07-15 10:56, Dirk Eddelbuettel wrote: > > > > > > > > Don't write passwords down like this. Your error is likely in > > expecting _ssh_ > > authentication over _https

Re: [Rd] GitHub passwords in .git/config?

2019-07-15 Thread Dirk Eddelbuettel
On 15 July 2019 at 11:41, Spencer Graves wrote: | On 2019-07-15 10:56, Dirk Eddelbuettel wrote: | > | > Don't write passwords down like this. Your error is likely in expecting _ssh_ | > authentication over _https_ -- when it works only over ssh. Use the alternate | > form for a remote e.g. one

[Rd] GitHub passwords in .git/config?

2019-07-15 Thread Spencer Graves
On 2019-07-15 10:56, Dirk Eddelbuettel wrote: Don't write passwords down like this. Your error is likely in expecting _ssh_ authentication over _https_ -- when it works only over ssh. Use the alternate form for a remote e.g. one that looks like g...@github.com:emacs-ess/ESS.git   I'm