Question

I have a public GitHub account for the last year or so. Yesterday I installed SmartGit on my Windows 7 PC. SmartGit works fine locally but I'd like to push to a remote repo on GitHub.

When I look at SmartGit -> Preferences -> Authentication I have selected to use SmartGit as SSH Client. The 'Known Credentials' area is empty. Under Hosting Providers I have added my github account [username+password] and Clicking on 'Login at GitHub...' it opens the browser and I am logged in successfully.

I would have assumed there would be something populating the Known Credentials area? I tried in vain in see if I had some key-pair stored somewhere that SmartGit could use. Eventually I downloaded PuttyGen and created a pair of keys. I gave them silly names to begin with but after some reading renamed them to *id_rsa* and "id_rsa.pub" and dropped them into my c:\users\MYNAME.ssh directory.

Still no sign of any credentials in SmartGit.

When I run the 'Remote -> Manage Remotes -> Add I enter the git name (based on the link I get from the github repo. I get the "Provide Credentials for authenticating to the SSH Server 'github.com' as user 'git'. The dialog box has pre-populated the Private Key File with the id_rsa I dropped into the .ss directory.

I even went onto github and added this key to the list of SSH keys. Still no joy.

Anyone any suggestions ?

Was it helpful?

Solution

Assuming it works similar on github and bitbucket. Today I got Smartgit 3.0.10 running with bitbucket by the following steps:

To upload local code

1) Created the repository in bitbucket manually through the website

2) Add your ssh key to the website ( PuttyGen > Conversions > Export OpenSSH )

3) In your local repos check the contents of reposDir.hg\hgrc , should look like

[paths] 
default = ssh://hg@bitbucket.org/user123/reposXYZ

if not change it manually. You can also clone your empty repos and the check in the local copy for this line.

Restart SmartGit and you should be able to push and pull.

OTHER TIPS

If you use the "HTTPS clone URL" on github, it makes a link that requires no SSH keys. These 2 articles explain it: https://help.github.com/articles/which-remote-url-should-i-use https://help.github.com/articles/generating-ssh-keys

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top