From: Jani Nikula <jani.nikula@intel.com>
To: intel-gfx@lists.freedesktop.org
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>,
Paulo Zanoni <paulo.r.zanoni@intel.com>,
Rodrigo Vivi <rodrigo.vivi@intel.com>
Subject: Re: [maintainer-tools PATCH 01/30] qf: Deprecate the use of qf without any subcommand.
Date: Tue, 22 Aug 2017 10:34:43 +0300 [thread overview]
Message-ID: <87a82s5a3w.fsf@nikula.org> (raw)
In-Reply-To: <20170821201120.2205-1-rodrigo.vivi@intel.com>
On Mon, 21 Aug 2017, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> These sequences here are already covered by `qf git` subcommand.
> I double checked and confirmed that our continuously rebasing
> bot does not use this qf directly here and I'm not aware
> of anyone else using it. So let's remove it so we can start
> handling everything with subcommands (dim style).
Apart from the specific comments from me and Daniel, ack on the
series. This is pretty much how I converted dim way back.
BR,
Jani.
>
> Cc: Paulo Zanoni <paulo.r.zanoni@intel.com>
> Cc: Imre Deak <imre.deak@intel.com>
> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
> Cc: Jani Nikula <jani.nikula@intel.com>
> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> qf | 7 +------
> qf.rst | 7 -------
> 2 files changed, 1 insertion(+), 13 deletions(-)
>
> diff --git a/qf b/qf
> index 1f056f90ef70..d1c331023230 100755
> --- a/qf
> +++ b/qf
> @@ -480,12 +480,7 @@ case "$1" in
> shift
> gitk "$@"
> ;;
> - help)
> - qf_help
> - ;;
> *)
> - cd_toplevel
> - cd patches
> - git "$@"
> + qf_help
> ;;
> esac
> diff --git a/qf.rst b/qf.rst
> index 902b0d377f41..f0019d76c53d 100644
> --- a/qf.rst
> +++ b/qf.rst
> @@ -233,13 +233,6 @@ help
> ----
> This help text here
>
> -all other subcommands - IMPORTANT
> ----------------------------------
> -Any other subcommands are executed directly in the quilt patches
> -directory as git commans. When using quilt flow in scripts it is
> -import to use the explicit forwarding to avoid clashes with
> -furture extensions.
> -
> CONTRIBUTING
> ============
--
Jani Nikula, Intel Open Source Technology Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
prev parent reply other threads:[~2017-08-22 7:35 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-21 20:10 [maintainer-tools PATCH 01/30] qf: Deprecate the use of qf without any subcommand Rodrigo Vivi
2017-08-21 20:10 ` [maintainer-tools PATCH 02/30] qf: Introduce subcommand and aliases Rodrigo Vivi
2017-08-21 20:10 ` [maintainer-tools PATCH 03/30] qf: Move "setup" from case to new subcommand Rodrigo Vivi
2017-08-21 20:10 ` [maintainer-tools PATCH 04/30] qf: Move "checkout" " Rodrigo Vivi
2017-08-21 20:10 ` [maintainer-tools PATCH 05/30] qf: Move "rebase" " Rodrigo Vivi
2017-08-21 20:10 ` [maintainer-tools PATCH 06/30] qf: Move "refresh" " Rodrigo Vivi
2017-08-21 20:10 ` [maintainer-tools PATCH 07/30] qf: Move "export" " Rodrigo Vivi
2017-08-21 20:10 ` [maintainer-tools PATCH 08/30] qf: Move "export-visualize" " Rodrigo Vivi
2017-08-21 20:10 ` [maintainer-tools PATCH 09/30] qf: Move "push" " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 10/30] qf: Move "fetch" " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 11/30] qf: Move "pull" " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 12/30] qf: Move "stage" " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 13/30] qf: Move "wiggle-push" " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 14/30] qf: Move "resolved" " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 15/30] qf: Move "apply" " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 16/30] qf: Move "patch-amend" " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 17/30] qf: Move "list-unused-patches" " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 18/30] qf: Move "baseline" " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 19/30] qf: Move "git" " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 20/30] qf: Move "gitk" " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 21/30] qf: SC2006 - Fix one of shellcheck complains on qf Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 22/30] qf: SC2068 - Fix another shellcheck complain Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 23/30] qf: SC2053 - Fix another shellcheck complain: Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 24/30] qf: SC2155 - Fix another shellcheck complain Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 25/30] qf: SC2035 " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 26/30] qf: SC1091 " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 27/30] qf: SC2153 " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 28/30] qf: SC1083 " Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 29/30] qf: Add it to shellcheck part of make check Rodrigo Vivi
2017-08-21 20:11 ` [maintainer-tools PATCH 30/30] qf: Use .dimrc to config and extend qf Rodrigo Vivi
2017-08-22 7:06 ` Daniel Vetter
2017-08-22 12:46 ` Daniel Vetter
2017-08-22 12:49 ` Jani Nikula
2017-08-22 7:33 ` Jani Nikula
2017-08-22 18:16 ` Rodrigo Vivi
2017-08-23 15:13 ` Daniel Vetter
2017-08-23 17:23 ` [maintainer-tools PATCH] qf: Introduce .qfrc Rodrigo Vivi
2017-08-24 6:33 ` Daniel Vetter
2017-08-22 6:55 ` [maintainer-tools PATCH 01/30] qf: Deprecate the use of qf without any subcommand Daniel Vetter
2017-08-22 7:36 ` Daniel Vetter
2017-08-22 18:00 ` Rodrigo Vivi
2017-08-22 18:17 ` [PATCH] qf: Introduce subcommand and aliases Rodrigo Vivi
2017-08-22 7:34 ` Jani Nikula [this message]
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=87a82s5a3w.fsf@nikula.org \
--to=jani.nikula@intel.com \
--cc=daniel.vetter@ffwll.ch \
--cc=intel-gfx@lists.freedesktop.org \
--cc=paulo.r.zanoni@intel.com \
--cc=rodrigo.vivi@intel.com \
/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