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
- problem to push files on a repository git
- diff3 output in git conflict style, including mergeable hunks
- Git Not In Sync with Local Branch
- Setting up the version control of .dotfiles while the .config is connected to a forked repo
- How to fix overriding the main branch in Git?
- I can't add text to "Message" in VS Code when committing to Git
- How can i redirect pull request from main branch to another branch
- Xcode commits (possibly outside of any branch) disappeared, how to get them back?
- Git/TortoiseGit : how to apply ONLY the changes from ONE commit from branch A, to branch B?
- How can I reintroduce username an password on git using fedora?
- GIT SKIP EMPTY DIRECTORIES
- Git smudge run once per checkout or per commit?
- I can't find ~/.profile or ~/.bashrc in C:/Users/<user>/.ssh folder
- Set environment variable during push for GitHub Actions
- Android WebRTC compile
Related Questions in SSH
- Is there a way to prevent vscode from forwarding ssh agent to remote dev container?
- problem to push files on a repository git
- How to connect to ssh server with domain name
- GIT SKIP EMPTY DIRECTORIES
- Share files from the server without data or internet usage
- Is it possible for `sudo` to fail temporarily with the correct password? Hacking suspected
- How to add a second ssh public key to authorized_keys file in the server?
- Termux: Different scrolling behaviour after "screen"-command
- Remote debugging via SSH Tunnel
- Why can I not login to a new linux system (amazon linux 2023) from an old one (CentOS 6)
- Can't establish ssh connection to IP address but can to git
- Using Maven to feed minikube on a VM
- Connect ssh to cisco switch with ansible
- PowerShell Command via SSH
- How to automate an SSH login with a batch file?
Related Questions in GITOLITE
- Bash script to automatically pull git repo and generate documentation on remote gitolite server does not work
- Gitolite authentication using ldap over web on https
- gitolite: error: src refspec master does not match any
- New cgit/gitolite not allowing access to copied repostiory
- Tuleap Project - Display the correct SSH Address in Git Clone Address Window When Using a Custom SSH Port in Docker
- How to send only specific packets in git push?
- make gitolite repository public
- gitolite can not limit user to access branch
- Gitlab server: giving access to only certain ssh keys rather than any key that the user uploads
- gitolite hooks not found
- git error FATAL: unknown git/gitolite command: 'git receive-pack'
- gitolite-config with user-name in branch pattern possible?
- What about 'git reset --hard' with read permission (local/remote)?
- How to apply changes of the repository permissions in gitolite?
- Moving a Gitolite (3) server that is using Git Annex
Related Questions in ATLASSIAN-SOURCETREE
- Dealing with untracked changes in git
- Sourcetree Resolve Conflicts by Theirs Issue
- How to integrate JIRA with AWS dynamodb service, If any story/task movement has been occured on jira dashabord it should reflect on the AWS dynamodb?
- Sourcetree GUI : Why main branch is behind another branch? Is it normal?
- Sourcetree caches old branches that no longer exist on github. I do not want this
- Bitbucket: how to display differences between current commit and previous commit
- Fetch remote changes with out changing branches in SourceTree
- What's git -c diff.mnemonicprefix=false -c core.quotepath=false --no-optional-locks push -v --tags --set-upstream origin master:master
- In SourceTree, Clone seems to bring submodule files from GitHub repos then seems to delete them
- Tool like SourceTree or similar to work on remote server trough SSH
- Is there any merge tool for Macbook Air M2?
- Basic Question on SourceTree functionality: generic repository support?
- How can I copy the Sourcetree stashes from old PC to a new one?
- I can't do anything(push/pull/fetch) using the GUI of SourceTree (credentalhelperselector, git-credential-manager-core)
- Git tags moving from one remote branch to another
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 # Hahtags
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.