Tagged Questions
0
votes
1answer
19 views
How to avoid typing passphrase for git pull executed under www-data
I stuck on the operation when I need to execute Git pull command running from PHP script. (user is added into www-data group) without passphrase typing. I found that this can be solved using command:
...
0
votes
0answers
22 views
Can't push to Heroku after git restore
I had to restore my master branch from github a couple weeks ago and since then I've been receiving an error that states "Your key with fingerprint... is not authorized to access my app."
I've ...
1
vote
0answers
20 views
Git-receive-pack error over SSH pushing
I am trying to push my local git repository to a ssh server, where I have neither root access nor the git command line installed.
Since I have seen that git also supports ftp pushing i have thought ...
1
vote
2answers
68 views
Limit SSH User to a shell command
My question is
how can I allow an user to ssh to my server with limitation to a shell command and a directory?
My situation
I'm using git to deploy code to my Server. I have 2 servers, 1st one is ...
0
votes
0answers
21 views
Error trying to clone repository
I'm trying to clone a repository into my local machine, but everytime I do I get the following error:
FATAL ERROR Disconnected No supported authentication methods available (server sent: public key)
...
0
votes
1answer
22 views
Setup remote GIT repository via SSH? (No code access to the remote location)
I have a remote location I want to use as GIT repository. I have SSH access to that location and can copy files there. I can't install or run the GIT executables on the remote location. Can I (and ...
0
votes
1answer
22 views
Pushing over SSH to a GIT repository with Xcode 4.6
I am using Xcode 4.6 to develop my projects and I am using the local repository feature. However I would like to be able to push my repository to a remote ssh server.
I have tried the following but ...
1
vote
1answer
27 views
Cannot login into gitolite server to clone, but can connect via ssh
While there are several questions with similar symptoms, none are exactly the same, nor do the solutions presented there solve my issue.
I have set up gitolite successfully, as far as I am aware, ...
0
votes
1answer
23 views
git remote repository and login server
I have a git repository on a server to which I only can connect via a login server.
I usualy make a ssh connect to the gitserver with this command:
ssh loginserver -t ssh gitserver
Can I use this ...
0
votes
0answers
25 views
SSH remote command no reading all environment variables [migrated]
I have declared some "PATH" variables in the ".bashrc" file of a remote machine. When I login to the remote machine, all these "PATH" variables work fine. But when I do a "ssh user@remote env", the ...
0
votes
0answers
20 views
writable smart HTTP and SSH git server
I need a writable smart HTTP and SSH git server.
Apache use www-data user, but SSH cannot login www-data.
If I push via SSH abc user, the files permission will follow abc user, which makes www-data ...
0
votes
0answers
34 views
Jenkins can't clone git repo but can ssh
I'm attempting to automate a build using a Jenkins CI installation on Windows 7.
I've set up Jenkins to use the 'execute Windows batch command' and in here first
call ssh -vT git@ourserver
and ...
0
votes
1answer
38 views
Cannot push to github, ssh: Could not resolve hostname
I can't get pass this, have remade the repository multiple times, made ssh keys over
--------------
demo_app <username>$ git remote add origin git@github.com:<username>/demo_app.git
...
0
votes
0answers
26 views
npm publish with private registry (git+ssh)
I'm working with private module that i created. they are stored into my private git server.
i set the dependencies for that modules successfully using :
"dependencies" :
{
"mymodule" : ...
-1
votes
0answers
81 views
Gitlab: Can't clone repo over SSH
I've installed Gitlab version 5.1 on my server (Centos 6.4 64bit). After a lot of hiccups, I now can clone, pull and push... but only over HTTP. Anytime I try an SSH clone, this error occurs:
$ git ...
6
votes
1answer
64 views
Powershell takes a long time to load on start-up while loading ssh-agent / git
I have Powershell set to use posh-git through Git for Windows. In my profile file I have this:
# If Posh-Git environment is defined, load it.
. (Resolve-Path "$env:LOCALAPPDATA\GitHub\shell.ps1")
. ...
0
votes
1answer
47 views
JGit for showing information about remote git repository
I'm working on a java web application that deals with showing/editing ASCII (text) files on a Unix server. The total size of all the ASCII files is about 1 GB and the situation is as follows:
Unix ...
0
votes
0answers
16 views
osx SSH + Git to a remote server with user/pw [migrated]
A bit of a disclaimer; I'm new to both GIT and SSH as well as OSX so sorry for being a bit bad at explaining the problem.
So, I'm trying to reach a GIT repository on my work's server. The structure ...
1
vote
1answer
23 views
Git Object Permissions - SSH
I have created a bare repository on my server. I am working with another developer and want to share access to this repo. I have set chgrp -R staff repo.git as well as chmod -R 660 repo.git. I have ...
0
votes
0answers
19 views
EC2 and Github key
When I want to deploy a new code to EC2 server that is on Github, I get the error message
[IP.compute-1.amazonaws.com :: out] Permission denied (publickey).
** [IP.compute-1.amazonaws.com :: out] ...
3
votes
2answers
57 views
zsh - show if git branch have unpushed commitments
Actually Im using a slightly modified version of the oh my zsh theme blinks. It show a SSH statement just for optical difference to my local terminal.
Also it show the branch and a little star if ...
-1
votes
1answer
191 views
Why can't ssh establish “the authenticity of host” for Github?
Both fingerprints of my host and my key on Github are the same. Why does the connection still fail?
ssh -vT git@github.com
OpenSSH_5.9p1 Debian-5ubuntu1, OpenSSL 1.0.1 14 Mar 2012
debug1: Reading ...
-1
votes
1answer
21 views
Can't access files in Git remote repo
I have an app on GitHub. I pull this down to my laptop, edit the files, and push back to GitHub, no problem.
Now, I want to deploy this app to my server. So, I SSH into my server and I create a git ...
1
vote
2answers
81 views
SSH Login with Password in URL
I have Jenkins cloning the Git repository at
ssh://user@ip/repo/
and it all works fine, but I need to login with a password, which Jenkins doesn't support. Is there a way to login with the ...
0
votes
0answers
77 views
Installing git on GoDaddy
I am trying to install git on Linux on server following instruction from this website which GoDaddy recommends.
Since I'm not an SSH expert I'm struggling to replace variables in .bashrc file
My ...
1
vote
1answer
24 views
Git commits not using forwarded ssh agent?
Setup:
We have several users with access to a Github repo.
These users all have deploy privileges on various servers.
The servers do not have access to the Github repo - they use ssh-agent forwarding ...
0
votes
0answers
82 views
Git timeout error but SSH works
I try to use our company VPN with git and I get this error no matter what I try to execute(clone, fetch, pull, push):
[stoyan@localhost comapny-git-code]$ git pull
Timeout, server team.company.org ...
1
vote
1answer
30 views
Selective access to Git repository based on SSH
I have a server with six Git repositories, to which I have read+write access through a single SSH account, all in /opt/git/, all owned by the SSH account.
I'd like to give somebody else read+write ...
0
votes
1answer
37 views
Using git with 2 laptops and multiple identities
I started a project on my office computer. Now I'm trying to move development to my home laptop. But my home laptop already has keys of own (for several other projects).
This particular project is ...
-1
votes
1answer
29 views
I can't use git to push my source code, It said “Permission denied (publickey).”
I had created a repository. and I run these command in local computer:
$ git init
$ touch README
$ git add README
$ git commit -m "first commit"
$ git remote add origin ...
2
votes
1answer
2k views
git push to remote repository “Could not read from remote repository”
I searched for a while but I can't find a solution to my Problem.
I have a Server I can connect to via ssh with the username git and a local git repository.
Now I want to push my local repository to ...
0
votes
0answers
19 views
How best to Merge Git Changes over SSH
I have a feeling I'm going about this the wrong way.
I have a software project with 3 developers all working on their own GIT Repo making frequent changes. They're pushing their changes to the ...
0
votes
1answer
100 views
“git push” produces Gtk-WARNING
I've been working on my project remotely through the command line on a machine to which I don't have admin rights and after running git push origin master I get the following error message:
...
0
votes
3answers
53 views
Git on Windows - How to authenticate with remote repo on Linux
Due to some serious problems with a Git repo on Windows over HTTP, we're moving our Git 'server' to Linux.
Assuming I have already the msysgit for Windows installed and Putty, how will I authenticate ...
0
votes
1answer
126 views
Why Git ignores ~/.ssh/id_rsa, wants ~/.ssh/id_dsa or ~/.ssh/id_ecdsa?
This is the error I'm receiving:
no such identity: /home/eduan/.ssh/id_dsa: No such file or directory
no such identity: /home/eduan/.ssh/id_ecdsa: No such file or directory
Permission denied ...
1
vote
1answer
43 views
Why is git clone user@server working when git clone ssh://user@server doesn't?
I am new to git. I have created a bare repository on a server on which I have SSH access. If I try to clone it onto my workstation, I get two different results:
% git clone ...
0
votes
1answer
20 views
Allow designer to upload images - restrict access trough ssh or git user or gitignore?
Here's the thing:
We are developing and we push and commit etc.
Our designers just finish an image edition and it would be nice for the workflow, to allow the designers to place their images ...
1
vote
1answer
38 views
Git error when connecting to server through ssh
I'm on Windows 7 and I want to connect to server through ssh. But I got an error after authentication (which was succesfully).
fatal: Interactive git shell is not enabled.
hint: ~/git-shell-commands ...
1
vote
1answer
510 views
GitLab 5.0: Git push via SSH fails, but no errors with HTTPS or with direct SSH connection
When I attempt to git push, I get the usual error
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
However, ...
1
vote
1answer
619 views
Gitlab: I cant push or clone repo, asking for git password
I'm installed latest gitlab with bitnami. but i cant push my updates to central repo. It always asking for git password. I'm installed it in a local server and given the domain name as a local IP. The ...
0
votes
1answer
54 views
Git setting up ssh key
I installed git on a machine using Windows Xp and I am trying to clone from a remote repository hosted on heroku. The problem is that when I first login on heroku the generate ssh key option does not ...
0
votes
0answers
78 views
Install git on ubuntu with lamp [closed]
i have Ubuntu 12.10 on my server and i need lamp on it, i want to use git on it - which i'm new to -... so I've read This article about how to install git , it says that i should have public ssh key ...
1
vote
2answers
41 views
git file permissions over ssh/git-shell?
I've setup a private bare git repository foo.git for a developer on my server, and gave them access over ssh via the login shell git-shell.
As it is a multi-user system the bare repository I setup ...
2
votes
1answer
95 views
Configuring known_hosts in jgit
Using jgit with gitolite for source control, I have an application that generates certain code on command and which we want to be committed to source control. The goal is to pull with a fast forward, ...
1
vote
1answer
187 views
Netbeans 7.3: Error connecting to Git repository with SSH
I am trying to connect to a git repository on a remote server so I can edit the source code in Netbeans 7.3, but when I try to connect to the repository with my ssh private key to clone a repository, ...
-1
votes
2answers
126 views
Shell access is disabled with bitbucket from remote server
I have added my cat ~/.ssh/id_rsa.pub from my remote server to bitbucket ssh keys.
However when I try connect from my remote server with bitbucket I get:
PTY allocation request failed on channel 0
...
0
votes
2answers
84 views
push to heroku through port 443
I am unable to use the default port 22 and so have run into difficulties setting up git and heroku according to the hartl rails tutorial.
I was able to push to git by including the following in the ...
1
vote
1answer
169 views
Git repository working with SSH
I've a fresh installation of GitLab on my CentOS 6.4 server.
Before that, I was just using Github (in HTTP mode), so I'm very new to all of this.
I've created a key for my user, added it in ...
1
vote
1answer
200 views
Authentication error when setting up Jenkins to talk to git
I am trying to setup Jenkins on windows that would talk to a remote Android git repository. I However, keep getting the following error:
Using strategy: Default
Cloning the remote Git repository
...
4
votes
1answer
901 views
GitLab: Can't push code to server?
I've installed GitLab on an Ubuntu Server.
Everything seems to work fine except I can't push/pull/clone to/from the server.
When I push I get the general error message:
fatal: Could not read from ...



