Update bash completion header documentation
1) Added a note about supporting the long options for most commands, as we have been doing so for quite some time. 2) Include a notice that these routines are covered by the GPL, as that may not be obvious, even though they are distributed as part of the core Git distribution. 3) Added a short section on how to send patches to the routines, and to whom they should get sent to. Currently that is me, as I am the active maintainer. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
@ -1,8 +1,9 @@
|
|||||||
#
|
#
|
||||||
# bash completion support for core Git.
|
# bash completion support for core Git.
|
||||||
#
|
#
|
||||||
# Copyright (C) 2006,2007 Shawn Pearce
|
# Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org>
|
||||||
# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
|
# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/).
|
||||||
|
# Distributed under the GNU General Public License, version 2.0.
|
||||||
#
|
#
|
||||||
# The contained completion routines provide support for completing:
|
# The contained completion routines provide support for completing:
|
||||||
#
|
#
|
||||||
@ -11,6 +12,7 @@
|
|||||||
# *) .git/remotes file names
|
# *) .git/remotes file names
|
||||||
# *) git 'subcommands'
|
# *) git 'subcommands'
|
||||||
# *) tree paths within 'ref:path/to/file' expressions
|
# *) tree paths within 'ref:path/to/file' expressions
|
||||||
|
# *) common --long-options
|
||||||
#
|
#
|
||||||
# To use these routines:
|
# To use these routines:
|
||||||
#
|
#
|
||||||
@ -31,6 +33,17 @@
|
|||||||
# are currently in a git repository. The %s token will be
|
# are currently in a git repository. The %s token will be
|
||||||
# the name of the current branch.
|
# the name of the current branch.
|
||||||
#
|
#
|
||||||
|
# To submit patches:
|
||||||
|
#
|
||||||
|
# *) Read Documentation/SubmittingPatches
|
||||||
|
# *) Send all patches to the current maintainer:
|
||||||
|
#
|
||||||
|
# "Shawn O. Pearce" <spearce@spearce.org>
|
||||||
|
#
|
||||||
|
# *) Always CC the Git mailing list:
|
||||||
|
#
|
||||||
|
# git@vger.kernel.org
|
||||||
|
#
|
||||||
|
|
||||||
__gitdir ()
|
__gitdir ()
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user