* [maintainer-tools PATCH] dim: print branches containing commit-ish if no tag contains it
@ 2015-10-22 9:36 Jani Nikula
2015-10-22 9:44 ` Daniel Vetter
0 siblings, 1 reply; 3+ messages in thread
From: Jani Nikula @ 2015-10-22 9:36 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula
dim tc is useful for checking when and where a commit has landed, so one
can decide where, for example, a fix to that commit should be queued.
If the commit is not in a tagged upstream Linux release, fall back to
printing the i915 upstream development branches that contain it.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
dim | 8 +++++++-
dim.rst | 3 ++-
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/dim b/dim
index bd7cae828ee7..3bd5b759f8a7 100755
--- a/dim
+++ b/dim
@@ -808,7 +808,13 @@ case "$subcommand" in
;;
tc)
cd $DIM_PREFIX/$DIM_DRM_INTEL
- git tag --contains $1 | grep ^v | sort -V | head -n 1
+ tag=$(git tag --contains $1 | grep ^v | sort -V | head -n 1)
+ if [[ -n "$tag" ]]; then
+ echo "$tag"
+ else
+ # not in a tagged release, show branches
+ git branch --contains $1 drm-intel-* master topic/* | sed 's/^[ \*]*//'
+ fi
;;
check-patch|cp)
dim_checkrange $@
diff --git a/dim.rst b/dim.rst
index ebbc04bc3604..a1da6e0b4621 100644
--- a/dim.rst
+++ b/dim.rst
@@ -174,7 +174,8 @@ Apply a patch to the i-g-t repository.
tc *commit-ish*
---------------
-Prints the linux kernel tag which contains the supplied commit-ish
+Print the oldest Linux kernel release or -rc tag that contains the supplied
+*commit-ish*, or, if none do, print the branches that contain it.
check-patch|cp [*commit-ish* [.. *commit-ish*]]
-----------------------------------------------
--
2.1.4
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [maintainer-tools PATCH] dim: print branches containing commit-ish if no tag contains it
2015-10-22 9:36 [maintainer-tools PATCH] dim: print branches containing commit-ish if no tag contains it Jani Nikula
@ 2015-10-22 9:44 ` Daniel Vetter
2015-10-22 10:14 ` Jani Nikula
0 siblings, 1 reply; 3+ messages in thread
From: Daniel Vetter @ 2015-10-22 9:44 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
On Thu, Oct 22, 2015 at 12:36:57PM +0300, Jani Nikula wrote:
> dim tc is useful for checking when and where a commit has landed, so one
> can decide where, for example, a fix to that commit should be queued.
>
> If the commit is not in a tagged upstream Linux release, fall back to
> printing the i915 upstream development branches that contain it.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> dim | 8 +++++++-
> dim.rst | 3 ++-
> 2 files changed, 9 insertions(+), 2 deletions(-)
>
> diff --git a/dim b/dim
> index bd7cae828ee7..3bd5b759f8a7 100755
> --- a/dim
> +++ b/dim
> @@ -808,7 +808,13 @@ case "$subcommand" in
> ;;
> tc)
> cd $DIM_PREFIX/$DIM_DRM_INTEL
> - git tag --contains $1 | grep ^v | sort -V | head -n 1
> + tag=$(git tag --contains $1 | grep ^v | sort -V | head -n 1)
> + if [[ -n "$tag" ]]; then
> + echo "$tag"
> + else
> + # not in a tagged release, show branches
> + git branch --contains $1 drm-intel-* master topic/* | sed 's/^[ \*]*//'
Shouldn't we check the remote branches instead? Since at least for me the
local -fixes branches are usually rather old ... We could sed the remote
prefix away again I guess. lgtm otherwise.
-Daniel
> + fi
> ;;
> check-patch|cp)
> dim_checkrange $@
> diff --git a/dim.rst b/dim.rst
> index ebbc04bc3604..a1da6e0b4621 100644
> --- a/dim.rst
> +++ b/dim.rst
> @@ -174,7 +174,8 @@ Apply a patch to the i-g-t repository.
>
> tc *commit-ish*
> ---------------
> -Prints the linux kernel tag which contains the supplied commit-ish
> +Print the oldest Linux kernel release or -rc tag that contains the supplied
> +*commit-ish*, or, if none do, print the branches that contain it.
>
> check-patch|cp [*commit-ish* [.. *commit-ish*]]
> -----------------------------------------------
> --
> 2.1.4
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 3+ messages in thread
* [maintainer-tools PATCH] dim: print branches containing commit-ish if no tag contains it
2015-10-22 9:44 ` Daniel Vetter
@ 2015-10-22 10:14 ` Jani Nikula
0 siblings, 0 replies; 3+ messages in thread
From: Jani Nikula @ 2015-10-22 10:14 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula
dim tc is useful for checking when and where a commit has landed, so one
can decide where, for example, a fix to that commit should be queued.
If the commit is not in a tagged upstream Linux release, fall back to
printing the i915 upstream development branches that contain it.
v2: check for remote branches (Daniel)
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
dim | 12 +++++++++++-
dim.rst | 3 ++-
2 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/dim b/dim
index bd7cae828ee7..cdb48b9f8976 100755
--- a/dim
+++ b/dim
@@ -808,7 +808,17 @@ case "$subcommand" in
;;
tc)
cd $DIM_PREFIX/$DIM_DRM_INTEL
- git tag --contains $1 | grep ^v | sort -V | head -n 1
+ tag=$(git tag --contains $1 | grep ^v | sort -V | head -n 1)
+ if [[ -n "$tag" ]]; then
+ echo "$tag"
+ else
+ # not in a tagged release, show upstream branches
+ git branch -r --contains $1 \
+ $DIM_DRM_INTEL_REMOTE/* \
+ $DIM_DRM_UPSTREAM_REMOTE/drm-next \
+ $DIM_DRM_UPSTREAM_REMOTE/drm-fixes \
+ origin/master | sed 's/^ *//'
+ fi
;;
check-patch|cp)
dim_checkrange $@
diff --git a/dim.rst b/dim.rst
index ebbc04bc3604..d5ec5c8128fd 100644
--- a/dim.rst
+++ b/dim.rst
@@ -174,7 +174,8 @@ Apply a patch to the i-g-t repository.
tc *commit-ish*
---------------
-Prints the linux kernel tag which contains the supplied commit-ish
+Print the oldest Linux kernel release or -rc tag that contains the supplied
+*commit-ish*, or, if none do, print the upstream branches that contain it.
check-patch|cp [*commit-ish* [.. *commit-ish*]]
-----------------------------------------------
--
2.1.4
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-10-22 10:11 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-22 9:36 [maintainer-tools PATCH] dim: print branches containing commit-ish if no tag contains it Jani Nikula
2015-10-22 9:44 ` Daniel Vetter
2015-10-22 10:14 ` Jani Nikula
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox