Re: [Barry-devel] Need advice to use GIT

2009-08-14 Thread Chris Frey
On Thu, Aug 06, 2009 at 10:02:49PM +0200, Nicolas wrote: > If I make : > for (;;) { > $ git fetch > $ git merge master > > $ git commit > } > $ git rebase origin/master > > $ git format-patch origin/master > OR > $ git push -f progweb master > > In fact, if I "rebase", I have to force the push..

Re: [Barry-devel] Need advice to use GIT

2009-08-06 Thread Nicolas
Le mercredi 05 août 2009 à 19:21 -0400, Chris Frey a écrit : > On Wed, Aug 05, 2009 at 08:28:00PM +0200, Nicolas wrote: > > Now, I want sync regulary this work in the GIT fork : > > git://repo.or.cz/barry/progweb.git > > (http://repo.or.cz/w/barry/progweb.git) > > > > So : > > for (;;) { > > > >

Re: [Barry-devel] Need advice to use GIT

2009-08-05 Thread Chris Frey
On Wed, Aug 05, 2009 at 08:28:00PM +0200, Nicolas wrote: > Now, I want sync regulary this work in the GIT fork : > git://repo.or.cz/barry/progweb.git > (http://repo.or.cz/w/barry/progweb.git) > > So : > for (;;) { > > > $ git add > $ git commit > > $ git pull --rebase > > You'll use a git-

Re: [Barry-devel] Need advice to use GIT

2009-08-05 Thread Josh Kropf
Typically publishing your git repo is just a matter of pushing it via ssh. I'm not sure how it is done on repo.or.cz but on my server I just simply issue the following command: $ git push ssh://j...@myserver.com/home/git/myproject HEAD On Wed, 05 Aug 2009 20:28:00 +0200 Nicolas wrote:

[Barry-devel] Need advice to use GIT

2009-08-05 Thread Nicolas
Hi, I have cloned the barry project with GIT : $ git clone git://repo.or.cz/barry.git barry When, I work, I do : for (;;) { $ git add $ git commit $ git pull --rebase $ git format-patch origin/master } Now, I want sync regulary this work in the GIT fork : git://repo.or.cz/barry/progweb.g