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..
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 (;;) {
> >
> >
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-
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:
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