Reverting to a previous git version

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
Fabrice DELENTE

Reverting to a previous git version

Post by Fabrice DELENTE »

Hello.

My question may be more git-related that wine-related, sorry for that but I
have much trouble finding an answer.

I have retrieved yesterday's git, but it introduced a bug that stops wine
from starting.

I want to revert to 0.9.56 using this same tree, how can I do that? I tried
'git branch wine-0.9.56;git rebase origin' but it didn't work.

Thanks.

--
Fabrice DELENTE
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: Reverting to a previous git version

Post by vitamin »

Fabrice DELENTE wrote:I have retrieved yesterday's git, but it introduced a bug that stops wine
from starting.
BTW the problem you are referring to is fixed in current GIT so you should update to today's GIT.
Fabrice DELENTE wrote:I want to revert to 0.9.56 using this same tree, how can I do that? I tried
'git branch wine-0.9.56;git rebase origin' but it didn't work.
http://wiki.winehq.org/GitWine should help you. In case you want to get back to wine-0.9.56 then run

Code: Select all

make clean
git reset --hard wine-0.9.56
Fabrice DELENTE

Reverting to a previous git version

Post by Fabrice DELENTE »

BTW the problem you are referring to is fixed in current GIT so you should
update to today's GIT.
Will try that immediately.
Code:
make clean
git reset --hard wine-0.9.56
Thanks !

--
Fabrice DELENTE
Locked