Tagged Questions
0
votes
1answer
49 views
Automate git-pull, stuck with keychain
I'd like to create a cronjob to automatically run a git-pull every minute.
The problem is that my repo is private, I had to create keys on my system (Ubuntu Server 12.04). I installed keychain and ...
0
votes
1answer
122 views
GIT issue in AIX 6.1
I recently installed GIT 1.8.1 on my AIX 6.1 machine and am facing a few issues with it.
Now if I login as root and issue git commands like git --version I get the response as shown :
Code:
git ...
-1
votes
1answer
55 views
How to identify and remove ?, ^A, or \001 file on Mac OS X? [closed]
I have a file of unknown origin on Mac OS X that appears as ^A or \001 or ? (question mark) depending on whether I'm looking at the output of ls or git:
(.env)Davids-MacBook-Pro:scripts watson$ ls
? ...
1
vote
1answer
73 views
Gitolite SSH URL Format
So I got gitolite set up. Simple. But there is one issue I am having. The SSH urls follow the format of git@host:repo. I'm used to Bitbucket / Github where the urls follow the format of ...
10
votes
1answer
354 views
Can a very large /etc/hosts.deny slow down SSH connections?
I've been using denyhosts for a while and I noticed my /etc/hosts.deny is getting rather large. Denyhosts adds IPs to /etc/hosts.deny, and my denyhosts is configured to never purge IPs.
$ wc -l ...
0
votes
2answers
1k views
How to set up a public Git repository in Unix
I've set up a number of private repos where I commit via SSH but I'm having problems setting up a public one. Here's what I've done so far:
Log into my server via ssh
$ cd public_html/repos/
$ mkdir ...
0
votes
1answer
93 views
VCS System that preserves Unix file permissions?
I'm looking for a simple revision control system for server configs. Something like works like git, but preserves Unix file permissions. And is NOT RCS.
Any tips?
Thanks!
1
vote
1answer
298 views
Via ssh, git-checkout into directory the user doesn't own: “Permission denied”
Using git push server I push to a remote bare git-repository via ssh.
The git-repository on the server has a post-receive hook which runs git checkout -f in /var/www/vhosts/domain.com/preview (working ...
0
votes
2answers
188 views
Which platform for Trac with SVN or GIT? [closed]
I currently have a redundant machine running a version of Mitel SME Server V5 which I've never used before. In fact I have no previous experience with any flavour of unix but would like to get some.
...
11
votes
6answers
5k views
Git - post-receive hook with git pull “Failed to find a valid git directory”
It's very weird but when setting a git repository and creating a post-receive hook with:
echo "--initializing hook--"
cd ~/websites/testing
echo "--prepare update--"
git pull
echo "--update ...
2
votes
4answers
124 views
setting up repositories for users, what does this entail?
Say I wanted to setup a server, where I could create GIT repositories for users.
I would only give them access via SSH.
I would need to restrict them to say 100megs or 1 gig etc.
Is this a ...