about: update contributors for v3.2
[git-cola.git] / README.md
blob81a4eaa386b618b505dcb6b71717532a0cb0d0a7
1 # git-cola: The highly caffeinated Git GUI
3     git-cola is a powerful Git GUI with a slick and intuitive user interface.
5     Copyright (C) 2007-2018, David Aguilar and contributors
7     This program is free software: you can redistribute it and/or modify
8     it under the terms of the GNU General Public License as published by
9     the Free Software Foundation, either version 2 of the License, or
10     (at your option) any later version.
12     This program is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU General Public License for more details.
17     You should have received a copy of the GNU General Public License
18     along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 ## SCREENSHOTS
22 Screenshots are available on the
23 [git-cola screenshots page](https://git-cola.github.io/screenshots.html).
25 ## DOWNLOAD
27     apt-get install git-cola
29 New releases are available on the
30 [git-cola download page](https://git-cola.github.io/downloads.html).
32 ## FORK
34     git clone git://github.com/git-cola/git-cola.git
36 [![git-cola build status](https://api.travis-ci.org/git-cola/git-cola.svg?branch=master)](https://travis-ci.org/git-cola/git-cola)
38 [git-cola on github](https://github.com/git-cola/git-cola)
40 [git-cola google group](http://groups.google.com/group/git-cola/)
43 # NUTRITIONAL FACTS
45 ## ACTIVE INGREDIENTS
47 * [git](http://git-scm.com/) 1.6.3 or newer.
49 * [Python](http://python.org/) 2.6 or newer (Python 2+3 compatible).
51 * [QtPy](https://github.com/spyder-ide/qtpy) 1.1.0 or newer.
53 * [argparse](https://pypi.python.org/pypi/argparse) 1.1 or newer.
54   argparse is part of the stdlib in Python 2.7; install argparse separately if
55   you are running on Python 2.6.
57 * [Sphinx](http://sphinx-doc.org/) for building the documentation.
59 *git-cola* uses *QtPy*, so you can choose between *PyQt4*, *PyQt5*, and
60 *PySide* by setting the `QT_API` environment variable to `pyqt4`, `pyqt5` or
61 `pyside` as desired.  `qtpy` defaults to `pyqt5` and falls back to `pyqt4`
62 if `pyqt5` is not installed.
64 Any of the following Python Qt libraries must be installed:
66 * [PyQt4](https://www.riverbankcomputing.com/software/pyqt/download)
67   4.6 or newer
69 * [PyQt5](https://www.riverbankcomputing.com/software/pyqt/download5)
70   5.2 or newer
72 * [PySide](https://github.com/PySide/PySide)
73   1.1.0 or newer
75 Set `QT_API=pyqt4` in your environment if you have both
76 versions of *PyQt* installed and want to ensure that PyQt4 is used.
78 *NOTE*: *git-cola* includes a vendored copy of its *QtPy* dependency.
80 We provide a copy of the `qtpy` module when installing *git-cola* so that you
81 are not required to install *QtPy* separately.  If you'd like to provide your
82 own `qtpy` module, for example from the `python-qtpy` Debian package, then use
83 `make NO_VENDOR_LIBS=1 ...` when invoking `make`, or export
84 `GIT_COLA_NO_VENDOR_LIBS=1` into the build environment.
86 Python3 users on debian will need to install `python3-distutils` in order
87 to run the Makefile's installation steps.  `distutils` is a Python build
88 requirement, but not needed at runtime.
91 ## ADDITIVES
93 *git-cola* enables additional features when the following
94 Python modules are installed.
96 [send2trash](https://github.com/hsoft/send2trash) enables cross-platform
97 "Send to Trash" functionality.
99 # BREWING INSTRUCTIONS
101 ## RUN FROM SOURCE
103 You don't need to install *git-cola* to run it.
104 Running *git-cola* from its source tree is the easiest
105 way to try the latest version.
107     git clone git://github.com/git-cola/git-cola.git
108     cd git-cola
109     ./bin/git-cola
110     ./bin/git-dag
112 Having *git-cola*'s *bin/* directory in your path allows you to run
113 *git cola* like a regular built-in Git command:
115     # Replace "$PWD/bin" with the path to git-cola's bin/ directory
116     PATH="$PWD/bin":"$PATH"
117     export PATH
119     git cola
120     git dag
122 The instructions below assume that you have *git-cola* present in your
123 `$PATH`.  Replace "git cola" with "./bin/git-cola" as needed if you'd like to
124 just run it in-place.
126 # DOCUMENTATION
128 * [HTML documentation](https://git-cola.readthedocs.io/en/latest/)
130 * [git-cola manual](share/doc/git-cola/git-cola.rst)
132 * [git-dag manual](share/doc/git-cola/git-dag.rst)
134 * [Keyboard shortcuts](https://git-cola.github.io/share/doc/git-cola/hotkeys.html)
136 * [Contributing guidelines](CONTRIBUTING.md)
138 # INSTALLATION
140 Normally you can just do "make install" to install *git-cola*
141 in your `$HOME` directory (`$HOME/bin`, `$HOME/share`, etc).
142 If you want to do a global install you can do
144     make prefix=/usr install
146 The platform-specific installation methods below use the native
147 package manager.  You should use one of these so that all of *git-cola*'s
148 dependencies are installed.
150 ## LINUX
152 Linux is it! Your distro has probably already packaged git-cola.
153 If not, please file a bug against your distribution ;-)
155 ### arch
157     yaourt -S git-cola
159 ### debian, ubuntu
161     apt-get install git-cola
163 ### fedora
165     dnf install git-cola
167 ### gentoo
169     emerge git-cola
171 ### opensuse
173 Use the [one-click install link](http://software.opensuse.org/package/git-cola).
176 ## MAC OS X
178 [Homebrew](http://brew.sh/) is the easiest way to install
179 git-cola's *Qt4* and *PyQt4* dependencies.  We will use Homebrew to install
180 the git-cola recipe, but build our own .app bundle from source.
182 [Sphinx](http://sphinx-doc.org/latest/install.html) is used to build the
183 documentation.
185     brew install sphinx-doc
186     brew install git-cola
188 Once brew has installed git-cola you can:
190 1. Clone git-cola
192     `git clone git://github.com/git-cola/git-cola.git && cd git-cola`
194 2. Build the git-cola.app application bundle
196     ```
197     make \
198         PYTHON=$(brew --prefix python3)/bin/python3 \
199         PYTHON_CONFIG=$(brew --prefix python3)/bin/python3-config \
200         SPHINXBUILD=$(brew --prefix sphinx-doc)/bin/sphinx-build \
201         git-cola.app
202    ```
204 3. Copy it to _/Applications_
206     `rm -fr /Applications/git-cola.app && cp -r git-cola.app /Applications`
208 Newer versions of Homebrew install their own `python3` installation and
209 provide the `PyQt5` modules for `python3` only.  You have to use
210 `python3 ./bin/git-cola` when running from the source tree.
212 ### UPGRADING USING HOMEBREW
214 If you upgrade using `brew` then it is recommended that you re-install
215 *git-cola*'s dependencies when upgrading.  Re-installing ensures that the
216 Python modules provided by Homebrew will be properly setup.
218 This is required when upgrading to a modern (post-10.11 El Capitan) Mac OS X.
219 Homebrew now bundles its own Python3 installation instead of using the
220 system-provided default Python.
223     # update homebrew
224     brew update
226     # uninstall git-cola and its dependencies
227     brew uninstall git-cola
228     brew uninstall pyqt5
229     brew uninstall sip
231     # re-install git-cola and its dependencies
232     brew install git-cola
234 ## WINDOWS INSTALLATION
236 **IMPORTANT** If you have a 64-bit machine, install the 64-bit versions only.
237 Do not mix 32-bit and 64-bit versions.
239 Download and install the following:
241 * [Git for Windows](https://git-for-windows.github.io/)
243 * [Git Cola](https://github.com/git-cola/git-cola/releases)
245 Once these are installed you can run *git cola* from the Start menu.
247 See "WINDOWS (continued)" below for more details.
249 # GOODIES
251 *git-cola* ships with an interactive rebase editor called *git-xbase*.
252 *git-xbase* can be used to reorder and choose commits and is typically
253 launched through the *git-cola*'s "Rebase" menu.
255 *git-xbase* can also be launched independently of the main *git-cola* interface
256 by telling `git rebase` to use it as its editor:
258     env GIT_SEQUENCE_EDITOR="$PWD/share/git-cola/bin/git-xbase" \
259     git rebase -i origin/master
261 The quickest way to launch *git-xbase* is via the *git cola rebase*
262 sub-command (as well as various other sub-commands):
264     git cola rebase origin/master
266 # COMMAND-LINE TOOLS
268 The *git-cola* command exposes various sub-commands that allow you to quickly
269 launch tools that are available from within the *git-cola* interface.
270 For example, `./bin/git-cola find` launches the file finder,
271 and `./bin/git-cola grep` launches the grep tool.
273 See `git cola --help-commands` for the full list of commands.
275     $ git cola --help-commands
276     usage: git-cola [-h]
277     
278                     {cola,am,archive,branch,browse,config,
279                      dag,diff,fetch,find,grep,merge,pull,push,
280                      rebase,remote,search,stash,tag,version}
281                     ...
282     
283     valid commands:
284       {cola,am,archive,branch,browse,config,
285        dag,diff,fetch,find,grep,merge,pull,push,
286        rebase,remote,search,stash,tag,version}
288         cola                start git-cola
289         am                  apply patches using "git am"
290         archive             save an archive
291         branch              create a branch
292         browse              browse repository
293         config              edit configuration
294         dag                 start git-dag
295         diff                view diffs
296         fetch               fetch remotes
297         find                find files
298         grep                grep source
299         merge               merge branches
300         pull                pull remote branches
301         push                push remote branches
302         rebase              interactive rebase
303         remote              edit remotes
304         search              search commits
305         stash               stash and unstash changes
306         tag                 create tags
307         version             print the version
309 ## HACKING
311 The following commands should be run during development:
313     # Run the unit tests
314     $ make test
316     # Check for pylint warnings.  All new code must pass 100%.
317     $ make pylint3k
319 The test suite can be found in the [test](test) directory.
321 The tests are setup to run automatically when code is pushed using
322 [Travis CI](https://travis-ci.org/git-cola/git-cola).
323 Checkout the [Travis config file](.travis.yml) for more details.
325 When submitting patches, consult the [contributing guidelines](CONTRIBUTING.md).
327 # WINDOWS (continued)
329 ## Development
331 In order to develop *git cola* on Windows you will need to install
332 Python3 and pip.  Install PyQt5 using `pip install PyQt5`
333 to make the PyQt5 bindings available to Python.
335 Once these are installed you can use `python.exe` to run
336 directly from the source tree.  For example, from a Git Bash terminal:
338     /c/Python36/python.exe ./bin/git-cola
340 ## Multiple Python versions
342 If you have multiple versions of Python installed, the `contrib/win32/cola`
343 launcher script might choose the newer version instead of the python
344 that has PyQt installed.  In order to resolve this, you can set the
345 `cola.pythonlocation` git configuration variable to tell cola where to
346 find python.  For example:
348     git config --global cola.pythonlocation /c/Python36
350 ## BUILDING WINDOWS INSTALLERS
352 Windows installers are built using
354 * [Pynsist](http://pynsist.readthedocs.io/en/latest/).
356 * [NSIS](http://nsis.sourceforge.net/Main_Page) is also needed.
358 To build the installer using *Pynsist* run:
360    ./contrib/win32/run-pynsist.sh
362 This will generate an installer in `build/nsis/`.
364 ## WINDOWS HISTORY BROWSER CONFIGURATION UPGRADE
366 You may need to configure your history browser if you are upgrading from an
367 older version of *git-cola*.
369 `gitk` was originally the default history browser, but `gitk` cannot be
370 launched as-is on Windows because `gitk` is a shell script.
372 If you are configured to use `gitk`, then change your configuration to
373 go through Git's `sh.exe` on Windows.  Similarly,we must go through
374 `python.exe` if we want to use `git-dag`.
376 If you want to use *gitk* as your history browser open the
377 *Preferences* screen and change the history browser command to:
379     "C:/Program Files/Git/bin/sh.exe" --login -i C:/Git/bin/gitk
381 *git-dag* became the default history browser on Windows in `v2.3`, so new
382 users should not need to configure anything.