Re: [git-users] Third way to create a bare repository?

2018-02-24 Thread rhkramer
Mark (and all), Thanks very much for your help! I think I've got it working now, and reviewing what you wrote helped me realize what I had missed, basically the step of "naming" the bare / remote repository with =git remote add=. I thought I'd record (on the list) more precisely what I

Re: [git-users] Third way to create a bare repository?

2018-02-12 Thread Mark Waite
On Mon, Feb 12, 2018 at 9:28 AM wrote: > I'm a newbie to git, but from what I've learned so far, I want to have > both a > working git repository and a "bare" git repository for some development I > want > to do. > > I've seen two ways to create a bare repository (iirc, init

[git-users] Third way to create a bare repository?

2018-02-12 Thread rhkramer
I'm a newbie to git, but from what I've learned so far, I want to have both a working git repository and a "bare" git repository for some development I want to do. I've seen two ways to create a bare repository (iirc, init --bare ... and clone --bare ...) , and I've had a few problems using