Dear sir's I'm new to seting up of Jenkins and have issues integrating with my GIt/SSH server.
Running Jenkins on a Windows 7 machine, while my GIT repository is on a Ubuntu Linux (10.0.0.131)
I've tried to understand the explained issues with integration, but seams fetch hangs as bellow
Building in workspace C:\Program Files (x86)\Jenkins\jobs\a\workspace
> git.exe rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
> git.exe config remote.origin.url dba...@10.0.0.131:/home/git/repos/medsave # timeout=10
Fetching upstream changes from dba...@10.0.0.131:/home/git/repos/medsave
> git.exe --version # timeout=10
using GIT_SSH to set credentials
> git.exe -c core.askpass=true fetch --tags --progress dba...@10.0.0.131:/home/git/repos/medsave +refs/heads/*:refs/remotes/origin/*
From my commandline I can pull using;
Initialized empty Git repository in C:/Temp/test/.git/
C:\Temp\test>git pull dba...@10.0.0.131:/home/git/repos/medsave
remote: Counting objects: 330, done.
remote: Compressing objects: 100% (276/276), done.
Rremote: Total 330 (delta 182), reused 0 (delta 0)eceiving objects: 99% (327/33
Receiving objects: 100% (330/330), 548.73 KiB | 186.00 K
Resolving deltas: 100% (182/182), done.
From 10.0.0.131:/home/git/repos/medsave
* branch HEAD -> FETCH_HEAD
The jenkins service is running as Local System Account but I've also tried running it under the same account as my command prompt above, to avoid known_hosts.
I can't find a good way to provide the ssh password through Jenkins, Any quick tips to help me keep running Jenkins as is and grab git data through the dbates user account.
Regards,
Duncan