Re: [git-users] Remote Repositrories

2012-11-15 Thread Iñigo Medina


I'd create a bare repository from active one and then copy it on remote. So:

$ cd ~/projects/repo
$ git clone --bare .git ../repo.git
$ cd ../
$ scp -r repo.git user@host://path


From there, you could then add such bare repo to your active repo as a source.

So.

$git remote add origin ssh://user@host/path

Of course, you should always have a Git server running on the remote host.

iñ

On Sun, 1 Jan 2012, Newt wrote:


Hi,

I'm a bit confused with using remote repositories.

I've got a local repository set up. I'm now trying to clone it onto a
network drive.

So locally, I've done:
cd ~/projects

I've then tried:
git clone --bare ./cal2 ssh://ip address/volume1/depot/cal2.git

However, all this does is create a new folder in ./cal2 called ssh:
and then creates directories beneath it. That's not what I want. What
am I doing wrong...

Cheers,

N.

--
You received this message because you are subscribed to the Google Groups Git for 
human beings group.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.




--




Re: [git-users] Remote Repositrories

2012-11-15 Thread John McKown
I have done something similar. What I then did in my working directory was:

git remote add remote ssh://user@host//path

I can thereafter do a:

git push remote

to push out all changes to the remote. You could even do two git push 
commands. The first into the local repository. The second into the 
remote repository.

The main difference, for me, was that I primed the remote by doing an 
ssh into the my server upon which the NAS is NFS mounted. I did:

cd /nfs-nas/path/git
mkdir project.git
cd project.git
git --bare init

to set up the git repo (empty) on the NAS. I then log off of the server, 
going back to my desktop. Once there, I cd into my project working 
directory and do:

git remote add remote ssh://user@server/nfs-nas/path/git/project.git
git push remote --all

The git push copies everything out the remote git repository on the NAS, 
via the server.



On Thursday, November 15, 2012 1:05:57 PM UTC-6, iñigo medina wrote:


 I'd create a bare repository from active one and then copy it on remote. 
 So: 

 $ cd ~/projects/repo 
 $ git clone --bare .git ../repo.git 
 $ cd ../ 
 $ scp -r repo.git user@host://path 

 From there, you could then add such bare repo to your active repo as a 
 source. 
 So. 

 $git remote add origin ssh://user@host/path 

 Of course, you should always have a Git server running on the remote host. 

 i� 

 On Sun, 1 Jan 2012, Newt wrote: 

  Hi, 
  
  I'm a bit confused with using remote repositories. 
  
  I've got a local repository set up. I'm now trying to clone it onto a 
  network drive. 
  
  So locally, I've done: 
  cd ~/projects 
  
  I've then tried: 
  git clone --bare ./cal2 ssh://ip address/volume1/depot/cal2.git 
  
  However, all this does is create a new folder in ./cal2 called ssh: 
  and then creates directories beneath it. That's not what I want. What 
  am I doing wrong... 
  
  Cheers, 
  
  N. 
  
  -- 
  You received this message because you are subscribed to the Google 
 Groups Git for human beings group. 
  To post to this group, send email to git-...@googlegroups.comjavascript:. 

  To unsubscribe from this group, send email to 
 git-users+...@googlegroups.com javascript:. 
  For more options, visit this group at 
 http://groups.google.com/group/git-users?hl=en. 
  
 

-- 




[git-users] Remote Repositrories

2012-01-01 Thread Newt
Hi,

I'm a bit confused with using remote repositories.

I've got a local repository set up. I'm now trying to clone it onto a
network drive.

So locally, I've done:
cd ~/projects

I've then tried:
git clone --bare ./cal2 ssh://ip address/volume1/depot/cal2.git

However, all this does is create a new folder in ./cal2 called ssh:
and then creates directories beneath it. That's not what I want. What
am I doing wrong...

Cheers,

N.

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.



Re: [git-users] Remote Repositrories

2012-01-01 Thread Chris Stone
If the network drive is mounted under projects you should be able to git
clone path to local repo folder name you want report cloned into if you
leave the second folder out it will default to report name. Also the --bare
Camden opt will not check out a working copy it will transfer the contents
of the .git folder to the network drive

Hope this helps with your issue
On Jan 1, 2012 12:32 PM, Newt new...@blueyonder.co.uk wrote:

 Hi,

 I'm a bit confused with using remote repositories.

 I've got a local repository set up. I'm now trying to clone it onto a
 network drive.

 So locally, I've done:
 cd ~/projects

 I've then tried:
 git clone --bare ./cal2 ssh://ip address/volume1/depot/cal2.git

 However, all this does is create a new folder in ./cal2 called ssh:
 and then creates directories beneath it. That's not what I want. What
 am I doing wrong...

 Cheers,

 N.

 --
 You received this message because you are subscribed to the Google Groups
 Git for human beings group.
 To post to this group, send email to git-users@googlegroups.com.
 To unsubscribe from this group, send email to
 git-users+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/git-users?hl=en.



-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.