I've created a gitolite git on an Ubuntu server. I configured my Linux user as the administrator of the gitolite-admin project. From 3 different machines I was able to clone the repository with no problem using my private key. On my own machine I keep on getting "authentication via SSH keys failed". I am using pageant. I re-installed source tree and pageant but still get the same result. I am able to connect with SSH (putty and winscp) to my user on the server, using my private key with pageant. All machines are win 7 and running the same source-tree version 1.6.11.0. Any ideas how to proceed?
gitolite authentication failure
457 Views Asked by ndweck At
1
There are 1 best solutions below
Related Questions in GIT
- Push mysql database script to server using git
- Git show's file path
- Git > diffs filtered, show only certain changed classes/files
- Pushing to git repository hosted by Visual studio online without entering user name and password
- How do I create my own Git branch to work on?
- Git init --bare giving error fatal: Out of memory? mmap failed: No such device
- Sub-directory into independent repository and later merge back into main repository
- How to find the Git Revision Hash in a synced SVN repo using SubGit?
- eclipse errors when try to change to master git branch
- How to have Heroku build my development branch on a staging server?
- Is "Merged in" a commit message created by bitbucket, or git?
- Git: Multiple projects under one directory
- Permission denied hg-git
- Is it possible to clone a private git repo without adding ssh keys
- Track file in master repository which is ignored in submodule
Related Questions in SSH
- Mule 3.6 Custom Java Class
- Permission denied hg-git
- Is it possible to clone a private git repo without adding ssh keys
- How can I figure out which process is opening the certain tcp port?
- Working on two different Git Organization repos using two different credentials in proxy mode
- SShpass not allowed with Travis CI
- vi/fugitive: Gpush does not exit... sometimes
- Prevent Linux user from connecting with WinSCP
- Expect Script through Putty works but not when called by scripts executed via http
- Vagrant : Create new user and force the use of ssh keys for accessing the server
- Trouble Connecting to MySQL via SSH
- Error in executing a Jar file in remote machine
- Workbench migration via ssh - how to set up a tunnel
- Program running non-stop in ssh
- How to Stop Node.js on Ubuntu and log out without stopping
Related Questions in GITOLITE
- Write Access for user on all repos on Gitolite
- How to check permission for other users in gitolite?
- Gitolite denies access to a repo while allowing another
- Migrating Permissions from Gitolite to GitLab
- Plugin to use gitolite's ACLs for CGIT/Apache httpd?
- gitolite/git: how can I bypass a pre-receive hook on demand?
- gitolite/git: how can I automatically populate the git pre-commit/pre-push hook
- gitolite - how to clone and push to repo that's created under a "user" folder
- How to pull changes on remote clone
- Issue on Gitolite permissions on a derived branch from a restricted one
- gitolite authentication failure
- Create a git repository with gitolite and push an existing local repository to it
- Cygwin and gitolite 3. How to set it up on windows?
- Gitolite user/repositories management
- Deploy website using Git/Gitolite [post-receive hook doesn't work properly]
Related Questions in ATLASSIAN-SOURCETREE
- git CLI commands for stage/unstage hunks/lines like sourcetree
- Merging branches in GIT - What does this message mean
- How can a revert commit also be a merge commit?
- What is the difference between Stop Tracking and Discard File in git SourceTree
- Git: How to clone a forked repo based on another forked repo?
- GIT, source tree: Deleting a character shows as whole line deletion and adding
- Sourcetree adding files in global .gitignore, not in repository .gitignore
- sourcetree - git :I want a committed in head
- Is there a way to sync different directories to different branches in the same project/repo in Git?
- Cannot push to openshift git remote
- How to ignore file deletions
- Committing uncommited changes to another branch
- Only push current branch in SourceTree
- SourceTree: dst ref refs/heads/master receives from more than one src
- I changed my line endings settings in Git. I still can't stage files due to line endings in SourceTree
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This could help you:
Go in SourceTree Tools->Create or Import SSH Keys and generate a key using this selected options: SSH-2 RSA
After generated the key, put Public key for pasting into OpenSSH authorized_keys file as admin ssh key in your gitolite server in Ubuntu. For example this key look like this:
Save public and private key in a your machine.
Go to SourceTree Tools->Options and set the private ssh key path. This path is the same where you save the ssh key in step 5.
In SourceTree go to Tools->Launch SSH Agent...
The system ask you for your passphrase.
Enter a passphrase and after try to clone the repo using the following url:
git@ip-server:repository-name
Thats all.