Re: git question

2007-02-16 Thread Stefan Dösinger
Am Freitag 16 Februar 2007 17:32 schrieb Joris Huizer: > Hello, > > As a new wine is released I'm trying to get updated. > Before I had used git for generating patches, I could > do: > > git fetch; git rebase origin > > however, now this doesn't seem to pickup anything. > How should I tell git to a

Re: git question

2007-02-16 Thread Jeff L
Joris Huizer wrote: git fetch; git rebase origin Have you committed all updates before you git rebase origin? git commit -a -m "all"; git rebase origin; git reset HEAD^ Jeff Latimer

git question

2007-02-16 Thread Joris Huizer
Hello, As a new wine is released I'm trying to get updated. Before I had used git for generating patches, I could do: git fetch; git rebase origin however, now this doesn't seem to pickup anything. How should I tell git to actually update to the files on the server? Thanks, Joris _