[git-users] Re: Running a dcommit for all branches

2011-03-25 Thread Hillel (Sabba) Markowitz
Thanks, I will start testing the usage and see how it comes out. --        Sabba     -          סבא הלל        -     Hillel Hillel (Sabba) Markowitz | Said the fox to the fish, "Join me ashore"  sabbahil...@gmail.com | The fish are the Jews, Torah is our water http://sabbahillel.blogspot.com --

[git-users] Re: Running a dcommit for all branches

2011-03-25 Thread Thomas Ferris Nicolaisen
OK, this is normal. I've always had this and it never gave me any problems. On Fri, Mar 25, 2011 at 8:32 PM, Hillel (Sabba) Markowitz wrote: > > > On Fri, Mar 25, 2011 at 3:29 PM, Thomas Ferris Nicolaisen > wrote: >> >> OK, glad it worked. What kind of warnings are you getting? >> > > Warning: r

[git-users] Re: Running a dcommit for all branches

2011-03-25 Thread Hillel (Sabba) Markowitz
On Fri, Mar 25, 2011 at 3:29 PM, Thomas Ferris Nicolaisen wrote: > OK, glad it worked. What kind of warnings are you getting? > > Warning: refname 'master' is ambiguous -- Sabba - סבא הלל- Hillel Hillel (Sabba) Markowitz | Said the fox to the fish, "Join me ashore

[git-users] Re: Running a dcommit for all branches

2011-03-25 Thread Thomas Ferris Nicolaisen
OK, glad it worked. What kind of warnings are you getting? On Fri, Mar 25, 2011 at 6:40 PM, Hillel (Sabba) Markowitz wrote: >> So it's hard to say. I would first step away from the "upci" alias for >> a bit, and use the manual update-ref + dcommit commands again, just to >> be sure that there's n

[git-users] Re: Running a dcommit for all branches

2011-03-25 Thread Hillel (Sabba) Markowitz
> So it's hard to say. I would first step away from the "upci" alias for > a bit, and use the manual update-ref + dcommit commands again, just to > be sure that there's not a bug in the alias. > > Do this: > > git update-ref refs/remotes/[branch] refs/remotes/origin/[branch] > > ... followed by git

[git-users] Re: Running a dcommit for all branches

2011-03-24 Thread Thomas Ferris Nicolaisen
> > git branch mybranch remotes/origin/mybranch > git co mybranch > > I had created the co alias for checkout and the upci alias. > > I tried this and modified a file followed by > > git commit -a -m "test file update" > git upci > > It gave me an error message unable to determine upstream SVN > in

[git-users] Re: Running a dcommit for all branches

2011-03-24 Thread Sabba Hillel
On Mar 23, 2:03 am, Thomas Ferris Nicolaisen wrote: > Almost, this is how: > > git clone bare-url gitdir > cd gitdir > git svn init svn-url > > This is "5. Set up an SVN remote in the developer's repo" in this > guide:http://blog.tfnico.com/2010/11/git-svn-mirror-for-multiple-branches.html git

[git-users] Re: Running a dcommit for all branches

2011-03-23 Thread Thomas Ferris Nicolaisen
No, I haven't heard of any git-svn dealings with svn:externals. That would be beyond my expectations of what git-svn is made to deal with. There are some Google resultsabout it though. Maybe you find something there? -- You received this mess

[git-users] Re: Running a dcommit for all branches

2011-03-23 Thread Thomas Ferris Nicolaisen
On Wed, Mar 23, 2011 at 4:41 PM, Hillel (Sabba) Markowitz wrote: > On Wed, Mar 23, 2011 at 2:03 AM, Thomas Ferris Nicolaisen > wrote: >> Almost, this is how: >> git clone bare-url gitdir >> cd gitdir >> git svn init svn-url >> >> This is "5. Set up an SVN remote in the developer's repo" in this g

[git-users] Re: Running a dcommit for all branches

2011-03-23 Thread Sabba Hillel
On Mar 23, 2:03 am, Thomas Ferris Nicolaisen wrote: > Almost, this is how: > > git clone bare-url gitdir > cd gitdir > git svn init svn-url > > This is "5. Set up an SVN remote in the developer's repo" in this > guide:http://blog.tfnico.com/2010/11/git-svn-mirror-for-multiple-branches.html Whe

[git-users] Re: Running a dcommit for all branches

2011-03-23 Thread Hillel (Sabba) Markowitz
On Wed, Mar 23, 2011 at 2:03 AM, Thomas Ferris Nicolaisen wrote: > Almost, this is how: > git clone bare-url gitdir > cd gitdir > git svn init svn-url > > This is "5. Set up an SVN remote in the developer's repo" in this guide: > http://blog.tfnico.com/2010/11/git-svn-mirror-for-multiple-branches.

[git-users] Re: Running a dcommit for all branches

2011-03-22 Thread Thomas Ferris Nicolaisen
Almost, this is how: git clone bare-url gitdir cd gitdir git svn init svn-url This is "5. Set up an SVN remote in the developer's repo" in this guide: http://blog.tfnico.com/2010/11/git-svn-mirror-for-multiple-branches.html -- You received this message because you are subscribed to the Google

[git-users] Re: Running a dcommit for all branches

2011-03-22 Thread Hillel (Sabba) Markowitz
On Tue, Mar 22, 2011 at 6:38 PM, Thomas Ferris Nicolaisen wrote: > The trick is to first clone the bare repository, and then do a git svn init > inside it, so it can be used for dcommitting. > > There are two ways to set up a repository that you can dcommit from: > > 1) git svn clone (takes ages w

[git-users] Re: Running a dcommit for all branches

2011-03-22 Thread Thomas Ferris Nicolaisen
The trick is to first clone the bare repository, and then do a git svn init inside it, so it can be used for dcommitting. There are two ways to set up a repository that you can dcommit from: 1) git svn clone (takes ages with big repositories) 2) git clone existing repository, and then do git svn

[git-users] Re: Running a dcommit for all branches

2011-03-22 Thread Hillel (Sabba) Markowitz
On Tue, Mar 22, 2011 at 1:36 PM, Thomas Ferris Nicolaisen wrote: >> Thanks. Unfortunately I do have a lot of branches. Actually, the fetch >> does pick up all branches and sends them to the "bare" repository so >> that every fetch updates every branch. So far it is only the dcommit >> that is givi

[git-users] Re: Running a dcommit for all branches

2011-03-22 Thread Thomas Ferris Nicolaisen
> Thanks. Unfortunately I do have a lot of branches. Actually, the fetch > does pick up all branches and sends them to the "bare" repository so > that every fetch updates every branch. So far it is only the dcommit > that is giving the problem. I am trying to avoid having to get > everyone use a gi

[git-users] Re: Running a dcommit for all branches

2011-03-22 Thread Hillel (Sabba) Markowitz
On Tue, Mar 22, 2011 at 1:25 PM, Thomas Ferris Nicolaisen wrote: > > Just to be clear, the upci alias is explained > here: http://blog.tfnico.com/2010/11/git-svn-mirror-for-multiple-branches.html > It's defined as: > upci = !git update-ref refs/remotes/$(git branch | grep '^*' | awk '{print > $2

[git-users] Re: Running a dcommit for all branches

2011-03-22 Thread Thomas Ferris Nicolaisen
Just to be clear, the upci alias is explained here: http://blog.tfnico.com/2010/11/git-svn-mirror-for-multiple-branches.html It's defined as: upci = !git update-ref refs/remotes/$(git branch | grep '^*' | awk '{print $2}') refs/remotes/origin/$(git branch|grep '^*'|awk '{print $2}') && git svn

[git-users] Re: Running a dcommit for all branches

2011-03-22 Thread Sabba Hillel
There is a typo below: On Mar 22, 1:14 pm, Sabba Hillel wrote: > I currently have a "bare" repo to be used by a development team for > maintaining a project with git. I have a "fetch" repo which was > created using git-svn. > > The fetch repo gets the updated information from the central svn > re