Hi Rohit On 10/06/2019 06:28, Rohit Ashiwal wrote: > Hey Phillip > > On Sun, 9 Jun 2019 19:03:02 +0100 Phillip Wood <phillip.wood123@xxxxxxxxx> wrote: >> >> Hi Rohit >> >> On 08/06/2019 20:19, Rohit Ashiwal wrote: >>> [...] >>> @@ -2654,8 +2654,8 @@ static int create_seq_dir(void) >>> { >>> if (file_exists(git_path_seq_dir())) { >>> error(_("a cherry-pick or revert is already in progress")); >>> - advise(_("try \"git cherry-pick (--continue | --quit | --abort)\"")); >>> - advise(_("or \"git revert (--continue | --quit | --abort)\"")); >>> + advise(_("try \"git cherry-pick (--continue | --skip | --quit | --abort)\"")); >>> + advise(_("or \"git revert (--continue | --skip | --quit | --abort)\"")); >> >> If the user has already committed the conflict resolution then we don't >> want to recommend --skip as there is nothing to skip. > I think it is more about suggesting what are all the possibilities > you can try and not about intelligently suggesting what you should > do. Previously all the suggested options were viable, --skip is not applicable if the user has committed a conflict resolution. The idea of the advice is to help the user, suggesting options that wont work is not going to help them. > ofc, we can not use `revert --<option>` while cherry-picking.( As I suggested in patch 1 we should tailor the error message to the command. > we should not be able to do so in ideal conditions, but the world > does not work as we think it should). Still we are suggesting so > here. Yes because you have the power to easily make that change. It is normal to try and improve the code base when we make related changes. > Also, I think it is more reasonable to make "this" a part of patch > which will cover "tailored" advice messages which is also a topic > of discussion as I described here[1]. That might make sense, but it is a pretty self contained change as part of this patch. Best Wishes Phillip > >> Best Wishes >> >> Phillip > > Thanks > Rohit > > [1]: https://public-inbox.org/git/20190609200038.GD28007@xxxxxxxxxxxxxxxxxxxxxxxx/T/#mbb071f6e29c69f291ecd9c61c71b889774ff33b2 >