Hello. I am using CVS on my AIX 6.1 box. I have gotten the repository setup and everything is working from command line. Now I want to use CVS on my Windows 7 machine using the remote repository on my AIX box. Has anyone else tried this? Why can't I get this to work?
I am new with Ubuntu.
I want to setup a local repository for Ubuntu 12.04, because i don't have internet access on my laptop. I downloaded repository using wget on windows machine and its download directory structure under us.archive.ubuntu.com directory.
Please let me how i setup local repository using it.
Thanks for response (in Advance).
I have a bare git repository that I use to push to and pull from on a linux machine (let's call the bare git repository remote originlinux). From my working repository that has originlinux as a remote I push and pull until finally I decide to put it on github.
On a shared host I have a website I would like to improve by adding it to git versioning system.
On remote server
$cd public_html
$git init
$git add .
$git commit -m 'First Commit'
$cd .git
$ git config git-ftp.user myuser
$ git config git-ftp.password mypass
$ git config git-ftp.url ftp.mydomain.ro
Locally linux mint/apache
Now how to I clone/get/use my repository from my local server?
I tr
I need to ssh (as root) to a remote server and perform some root level operations. I will be sshing from a local server where I don't have root privileges. Given this option, is it possible to perform passwordless ssh to remote system using (rsa) keys ?
Local and remote servers run linux.
BTW, I generated keys (ssh-keygen -t rsa) on the local server.
I'm trying to clone/pull a repository in another PC using Ubuntu Quantal. I have done this on Windows before but I don't know what is the problem on ubuntu.
Published at LXer:
In this tutorial i will show you how to install local repository in Ubuntu 13.04 server in two methods. If you use external hdd then it will your portable repository. You can use it in multiple locations other than your LAN. Both are easy to install and configure, finally pick one of them for your requirement.
Read More...
I've made a remote git repository with
mkdir /var/www/html/myproject.git
chmod 0770 /var/www/html/myproject.git
ln -s /var/www/html/myproject.git myproject.git
cd myproject.git
git --bare init
and successfully connected to it and cloned it on my own machine with
git clone git@myserver.co.uk:myproject.git
then uploaded some files to it
git push
which when tried again shows that the reposi
hello,
i am trying to get a list of files to be scped from the remote server
by running the below in my local unix server ( note - there is a passwordless connectivity setup made between the local and remote server) and, we use KSH.
---
Code:
ssh $scp_host "find /a/b/c/*/ -iname "$remote_file"" > list.dat
the above pulls all the files that matches the pattern fro