2008-02-14 08:01:23 +01:00
|
|
|
git-web--browse(1)
|
|
|
|
==================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
git-web--browse - git helper script to launch a web browser
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
'git-web--browse' [OPTIONS] URL/FILE ...
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
|
|
|
This script tries, as much as possible, to display the URLs and FILEs
|
|
|
|
that are passed as arguments, as HTML pages in new tabs on an already
|
|
|
|
opened web browser.
|
|
|
|
|
|
|
|
The following browsers (or commands) are currently supported:
|
|
|
|
|
|
|
|
* firefox (this is the default under X Window when not using KDE)
|
|
|
|
* iceweasel
|
2008-04-25 08:25:41 +02:00
|
|
|
* konqueror (this is the default under KDE, see 'Note about konqueror' below)
|
2008-02-14 08:01:23 +01:00
|
|
|
* w3m (this is the default outside graphical environments)
|
|
|
|
* links
|
|
|
|
* lynx
|
|
|
|
* dillo
|
|
|
|
* open (this is the default under Mac OS X GUI)
|
|
|
|
|
2008-03-14 05:56:53 +01:00
|
|
|
Custom commands may also be specified.
|
|
|
|
|
2008-02-14 08:01:23 +01:00
|
|
|
OPTIONS
|
|
|
|
-------
|
2008-06-08 03:36:09 +02:00
|
|
|
-b BROWSER::
|
|
|
|
--browser=BROWSER::
|
2008-02-14 08:01:23 +01:00
|
|
|
Use the specified BROWSER. It must be in the list of supported
|
|
|
|
browsers.
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-t BROWSER::
|
|
|
|
--tool=BROWSER::
|
2008-02-14 08:01:23 +01:00
|
|
|
Same as above.
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-c CONF.VAR::
|
|
|
|
--config=CONF.VAR::
|
2008-02-14 08:01:23 +01:00
|
|
|
CONF.VAR is looked up in the git config files. If it's set,
|
|
|
|
then its value specify the browser that should be used.
|
|
|
|
|
|
|
|
CONFIGURATION VARIABLES
|
|
|
|
-----------------------
|
|
|
|
|
2008-03-14 05:56:53 +01:00
|
|
|
CONF.VAR (from -c option) and web.browser
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2008-02-14 08:01:23 +01:00
|
|
|
The web browser can be specified using a configuration variable passed
|
|
|
|
with the -c (or --config) command line option, or the 'web.browser'
|
|
|
|
configuration variable if the former is not used.
|
|
|
|
|
2008-03-14 05:56:53 +01:00
|
|
|
browser.<tool>.path
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2008-02-14 08:01:23 +01:00
|
|
|
You can explicitly provide a full path to your preferred browser by
|
|
|
|
setting the configuration variable 'browser.<tool>.path'. For example,
|
|
|
|
you can configure the absolute path to firefox by setting
|
|
|
|
'browser.firefox.path'. Otherwise, 'git-web--browse' assumes the tool
|
|
|
|
is available in PATH.
|
|
|
|
|
2008-03-14 05:56:53 +01:00
|
|
|
browser.<tool>.cmd
|
|
|
|
~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
When the browser, specified by options or configuration variables, is
|
|
|
|
not among the supported ones, then the corresponding
|
|
|
|
'browser.<tool>.cmd' configuration variable will be looked up. If this
|
|
|
|
variable exists then "git web--browse" will treat the specified tool
|
|
|
|
as a custom command and will use a shell eval to run the command with
|
|
|
|
the URLs passed as arguments.
|
|
|
|
|
2008-04-25 08:25:41 +02:00
|
|
|
Note about konqueror
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
When 'konqueror' is specified by the a command line option or a
|
|
|
|
configuration variable, we launch 'kfmclient' to try to open the HTML
|
|
|
|
man page on an already opened konqueror in a new tab if possible.
|
|
|
|
|
2008-05-15 19:52:22 +02:00
|
|
|
For consistency, we also try such a trick if 'browser.konqueror.path' is
|
2008-04-25 08:25:41 +02:00
|
|
|
set to something like 'A_PATH_TO/konqueror'. That means we will try to
|
|
|
|
launch 'A_PATH_TO/kfmclient' instead.
|
|
|
|
|
|
|
|
If you really want to use 'konqueror', then you can use something like
|
|
|
|
the following:
|
|
|
|
|
|
|
|
------------------------------------------------
|
|
|
|
[web]
|
|
|
|
browser = konq
|
|
|
|
|
|
|
|
[browser "konq"]
|
|
|
|
cmd = A_PATH_TO/konqueror
|
|
|
|
------------------------------------------------
|
|
|
|
|
2008-03-14 05:56:53 +01:00
|
|
|
Note about git config --global
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2008-02-14 08:01:23 +01:00
|
|
|
Note that these configuration variables should probably be set using
|
|
|
|
the '--global' flag, for example like this:
|
|
|
|
|
|
|
|
------------------------------------------------
|
|
|
|
$ git config --global web.browser firefox
|
|
|
|
------------------------------------------------
|
|
|
|
|
|
|
|
as they are probably more user specific than repository specific.
|
|
|
|
See linkgit:git-config[1] for more information about this.
|
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Christian Couder <chriscool@tuxfamily.org> and the git-list
|
|
|
|
<git@vger.kernel.org>, based on git-mergetool by Theodore Y. Ts'o.
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
-------------
|
|
|
|
Documentation by Christian Couder <chriscool@tuxfamily.org> and the
|
|
|
|
git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|