Gnus development mailing list
 help / color / mirror / Atom feed
From: Rupert Swarbrick <rswarbrick@gmail.com>
To: ding@gnus.org
Subject: Re: nnimap rename
Date: Tue, 12 Oct 2010 16:40:12 +0100	[thread overview]
Message-ID: <i91vgv$q9q$1@dough.gmane.org> (raw)
In-Reply-To: <878w23zasl.fsf@sphax.lybrafox.lan>

[-- Attachment #1: Type: text/plain, Size: 1476 bytes --]

hobbes@poukram.net (Rémi Letot) writes:
> It worked on most groups before commit
> d173e96bece12e3b0d343c8c0d138289de56e111, only the groups responsible
> for breaking g (for me) where not possible to rename. 
>
> Now, I can't rename any group (haven't tried all of them, but quite a
> bunch), problematic or not. The error message is exactly the same as it
> was on the problematic groups before the commit.
>
> I don't know git (or any other dvcs), but I guess it would be possible
> for me to revert that specific commit and see if it restores the old
> behaviour ? Would it be usefull ? Can anyone tell me how to do that ?

You want to "checkout" the old version rather than
"reverting". Reverting refers to committing a change to undo an existing
change in the repository. What you need is time travel, which is much
simpler...

In git, you can say "the commit before" with a trailing caret, so I
think you probably want to use something like

  git checkout d173e96^

If you want to jump back and forwards easily, I recommend creating a
branch with a name, like

  git checkout -b old d173e96^

Now you can go to the new version with "git checkout master" and back
with "git checkout old". Moreover, you can cherry-pick commits into your
"old" branch to help work out what's going on.

When you finally want to get rid of the "old" branch, just checkout a
different branch (master, for example) and type "git branch -d old".

Rupert

[-- Attachment #2: Type: application/pgp-signature, Size: 315 bytes --]

  reply	other threads:[~2010-10-12 15:40 UTC|newest]

Thread overview: 63+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-04 19:49 'g' freezes Rémi Letot
2010-10-04 19:51 ` Lars Magne Ingebrigtsen
2010-10-04 19:57   ` Rémi Letot
2010-10-04 19:59     ` Lars Magne Ingebrigtsen
2010-10-04 20:21       ` Rémi Letot
2010-10-04 20:32         ` Lars Magne Ingebrigtsen
2010-10-04 21:01           ` Rémi Letot
2010-10-04 21:07             ` Rémi Letot
2010-10-05 16:27               ` Lars Magne Ingebrigtsen
2010-10-05 17:03                 ` Rémi Letot
2010-10-05 17:20                   ` Lars Magne Ingebrigtsen
2010-10-05 19:52                     ` Rémi Letot
2010-10-05 19:54                       ` Rémi Letot
2010-10-05 20:17                       ` Lars Magne Ingebrigtsen
2010-10-05 20:54                         ` Rémi Letot
2010-10-07 16:37                           ` Rémi Letot
2010-10-07 19:10                           ` Lars Magne Ingebrigtsen
2010-10-07 19:53                             ` Rémi Letot
2010-10-07 19:58                               ` Lars Magne Ingebrigtsen
2010-10-07 20:05                                 ` Rémi Letot
2010-10-07 20:07                                   ` Lars Magne Ingebrigtsen
2010-10-07 20:13                                     ` Rémi Letot
2010-10-08 12:56                         ` Rémi Letot
2010-10-09 15:48                           ` Lars Magne Ingebrigtsen
2010-10-09 18:46                             ` Rémi Letot
2010-10-09 20:02                               ` Lars Magne Ingebrigtsen
2010-10-09 20:26                                 ` Rémi Letot
2010-10-09 20:51                                   ` Lars Magne Ingebrigtsen
2010-10-09 21:13                                     ` Rémi Letot
2010-10-09 22:38                                       ` Lars Magne Ingebrigtsen
2010-10-10  0:01                                         ` Rémi Letot
2010-10-10 13:59                                           ` Lars Magne Ingebrigtsen
2010-10-10 17:56                                             ` Rémi Letot
2010-10-10 18:02                                               ` Lars Magne Ingebrigtsen
2010-10-10 18:03                                                 ` Lars Magne Ingebrigtsen
2010-10-10 18:55                                                   ` Rémi Letot
2010-10-10 19:38                                                     ` Rémi Letot
2010-10-10 20:47                                                       ` Lars Magne Ingebrigtsen
2010-10-10 20:59                                                         ` Rémi Letot
2010-10-10 21:13                                                           ` Lars Magne Ingebrigtsen
2010-10-10 21:26                                                             ` Rémi Letot
2010-10-10 21:31                                                               ` Lars Magne Ingebrigtsen
2010-10-10 21:45                                                                 ` Rémi Letot
2010-10-10 21:51                                                                   ` Lars Magne Ingebrigtsen
2010-10-10 22:01                                                                     ` Rémi Letot
2010-10-10 22:23                                                                       ` Lars Magne Ingebrigtsen
2010-10-10 22:38                                                                         ` Rémi Letot
2010-10-11 18:54                                                                           ` Rémi Letot
2010-10-11 19:00                                                                             ` Lars Magne Ingebrigtsen
2010-10-11 19:08                                                                               ` Rémi Letot
2010-10-11 19:26                                                                                 ` Lars Magne Ingebrigtsen
2010-10-11 20:22                                                                                   ` Rémi Letot
2010-10-12 12:41                                                                                     ` nnimap rename (was: Re: 'g' freezes) Lars Magne Ingebrigtsen
2010-10-12 15:32                                                                                       ` Rémi Letot
2010-10-12 15:40                                                                                         ` Rupert Swarbrick [this message]
2010-10-12 19:44                                                                                         ` nnimap rename Lars Magne Ingebrigtsen
2010-10-12 20:19                                                                                           ` Rémi Letot
2010-10-12 21:24                                                                                           ` Lars Magne Ingebrigtsen
2010-10-12 22:02                                                                                             ` Rémi Letot
2010-10-11 19:00                                                                             ` 'g' freezes Rémi Letot
2010-10-11 19:03                                                                               ` Lars Magne Ingebrigtsen
2010-10-10 18:45                                                 ` Rémi Letot
2010-10-04 21:08             ` Lars Magne Ingebrigtsen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='i91vgv$q9q$1@dough.gmane.org' \
    --to=rswarbrick@gmail.com \
    --cc=ding@gnus.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).