[oe-commits] Paul Gortmaker : git: add basic tab completion support

git at git.openembedded.org git at git.openembedded.org
Sat Feb 14 22:27:33 UTC 2015


Module: openembedded-core.git
Branch: master-next
Commit: 3c5285237dece0af594e74926e6f4f02ca81f715
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=3c5285237dece0af594e74926e6f4f02ca81f715

Author: Paul Gortmaker <paul.gortmaker at windriver.com>
Date:   Tue Feb 10 14:17:38 2015 -0500

git: add basic tab completion support

Trying to use git w/o tab completion is especially annoying if
you are used to using it elsewhere -- "whatchanged" is simply
too annoying to type out in full more than once.

Signed-off-by: Paul Gortmaker <paul.gortmaker at windriver.com>
Signed-off-by: Ross Burton <ross.burton at intel.com>

---

 meta/recipes-devtools/git/git.inc | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta/recipes-devtools/git/git.inc b/meta/recipes-devtools/git/git.inc
index ace1790..ddb1cee 100644
--- a/meta/recipes-devtools/git/git.inc
+++ b/meta/recipes-devtools/git/git.inc
@@ -38,6 +38,8 @@ do_install () {
 	install -t ${D}/${mandir}/man1 ${WORKDIR}/man1/*
 	install -t ${D}/${mandir}/man5 ${WORKDIR}/man5/*
 	install -t ${D}/${mandir}/man7 ${WORKDIR}/man7/*
+	install -d ${D}/${datadir}/bash-completion/completions/
+	install -m 644 ${S}/contrib/completion/git-completion.bash ${D}/${datadir}/bash-completion/completions/git
 }
 
 perl_native_fixup () {
@@ -94,6 +96,10 @@ PERLTOOLS = " \
     ${datadir}/git-core/templates/hooks/pre-rebase.sample \
 "
 
+# Basic tab completion support
+PACKAGES =+ "${PN}-bash-completion"
+FILES_${PN}-bash-completion = "${datadir}/bash-completion/completions/*"
+
 # Git tools requiring perl
 PACKAGES =+ "${PN}-perltools"
 FILES_${PN}-perltools += " \



More information about the Openembedded-commits mailing list