Showing preview only (2,284K chars total). Download the full file or copy to clipboard to get everything.
Repository: magit/magit
Branch: main
Commit: f66b6562c645
Files: 126
Total size: 2.2 MB
Directory structure:
gitextract_u4e35y6x/
├── .dir-locals.el
├── .elpaignore
├── .github/
│ ├── CONTRIBUTING.md
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.md
│ │ └── config.yml
│ ├── PULL_REQUEST_TEMPLATE
│ └── workflows/
│ ├── compile.yml
│ ├── manual.yml
│ ├── stats.yml
│ └── test.yml
├── .gitignore
├── .mailmap
├── CHANGELOG
├── LICENSE
├── Makefile
├── README.md
├── default.mk
├── docs/
│ ├── .orgconfig
│ ├── AUTHORS.md
│ ├── BACKERS.md
│ ├── Makefile
│ ├── RelNotes/
│ │ ├── 0.5.1.txt
│ │ ├── 0.6.1.txt
│ │ ├── 0.7.0.txt
│ │ ├── 0.8.0.txt
│ │ ├── 0.8.1.txt
│ │ ├── 0.8.2.txt
│ │ ├── 1.0.0.txt
│ │ ├── 1.1.0.txt
│ │ ├── 1.1.1.txt
│ │ ├── 1.1.2.txt
│ │ ├── 1.2.0.txt
│ │ ├── 1.2.1.txt
│ │ ├── 1.2.2.txt
│ │ ├── 1.4.0.txt
│ │ ├── 1.4.1.txt
│ │ ├── 1.4.2.txt
│ │ ├── 2.1.0.txt
│ │ ├── 2.10.0.txt
│ │ ├── 2.10.1.txt
│ │ ├── 2.10.2.txt
│ │ ├── 2.10.3.txt
│ │ ├── 2.11.0.txt
│ │ ├── 2.12.0.txt
│ │ ├── 2.12.1.txt
│ │ ├── 2.13.0.txt
│ │ ├── 2.13.1.txt
│ │ ├── 2.2.0.txt
│ │ ├── 2.2.1.txt
│ │ ├── 2.2.2.txt
│ │ ├── 2.3.0.txt
│ │ ├── 2.3.1.txt
│ │ ├── 2.4.0.txt
│ │ ├── 2.4.1.txt
│ │ ├── 2.5.0.txt
│ │ ├── 2.6.0.txt
│ │ ├── 2.6.1.txt
│ │ ├── 2.6.2.txt
│ │ ├── 2.7.0.txt
│ │ ├── 2.8.0.txt
│ │ ├── 2.9.0.txt
│ │ ├── 2.90.0.org
│ │ ├── 2.90.1.org
│ │ ├── 3.0.0.org
│ │ ├── 3.1.0.org
│ │ ├── 3.2.0.org
│ │ ├── 3.2.1.org
│ │ ├── 3.3.0.org
│ │ └── 4.0.0.org
│ ├── htmlxref.cnf
│ ├── magit-section.org
│ └── magit.org
├── git-hooks/
│ ├── fallthrough
│ ├── post-commit
│ ├── post-merge
│ └── post-rewrite
├── lisp/
│ ├── Makefile
│ ├── git-commit.el
│ ├── git-rebase.el
│ ├── magit-apply.el
│ ├── magit-autorevert.el
│ ├── magit-base.el
│ ├── magit-bisect.el
│ ├── magit-blame.el
│ ├── magit-bookmark.el
│ ├── magit-branch.el
│ ├── magit-bundle.el
│ ├── magit-clone.el
│ ├── magit-commit.el
│ ├── magit-core.el
│ ├── magit-diff.el
│ ├── magit-dired.el
│ ├── magit-ediff.el
│ ├── magit-extras.el
│ ├── magit-fetch.el
│ ├── magit-files.el
│ ├── magit-git.el
│ ├── magit-gitignore.el
│ ├── magit-log.el
│ ├── magit-margin.el
│ ├── magit-merge.el
│ ├── magit-mode.el
│ ├── magit-notes.el
│ ├── magit-patch.el
│ ├── magit-process.el
│ ├── magit-pull.el
│ ├── magit-push.el
│ ├── magit-reflog.el
│ ├── magit-refs.el
│ ├── magit-remote.el
│ ├── magit-repos.el
│ ├── magit-reset.el
│ ├── magit-section.el
│ ├── magit-sequence.el
│ ├── magit-sparse-checkout.el
│ ├── magit-stash.el
│ ├── magit-status.el
│ ├── magit-submodule.el
│ ├── magit-subtree.el
│ ├── magit-tag.el
│ ├── magit-transient.el
│ ├── magit-wip.el
│ ├── magit-worktree.el
│ └── magit.el
└── test/
├── Makefile
└── magit-tests.el
================================================
FILE CONTENTS
================================================
================================================
FILE: .dir-locals.el
================================================
((nil
(indent-tabs-mode . nil))
(emacs-lisp-mode
(checkdoc-allow-quoting-nil-and-t . t)
(lisp-indent-local-overrides . ((cond . 0) (interactive . 0))))
(makefile-mode
(indent-tabs-mode . t)
(mode . outline-minor)
(outline-regexp . "#\\(#+\\)"))
(git-commit-mode
(git-commit-major-mode . git-commit-elisp-text-mode))
(".github/PULL_REQUEST_TEMPLATE"
(nil (truncate-lines . nil)))
("CHANGELOG"
(nil (fill-column . 70)
(mode . display-fill-column-indicator))))
================================================
FILE: .elpaignore
================================================
.dir-locals.el
.elpaignore
.github
.mailmap
LICENSE
Makefile
default.mk
docs
lisp/Makefile
test
================================================
FILE: .github/CONTRIBUTING.md
================================================
Magit has many users and very few maintainers, so we kindly ask to read
the appropriate guidelines before getting in contact. — Thanks!
- 🆘 [How to ask for help](https://github.com/magit/magit/discussions/4630)
- 🪳 [How to report a bug](https://github.com/magit/magit/wiki/How-to-report-a-bug)
- 💡 [How to suggest a feature](https://github.com/magit/magit/discussions/4631)
- 🏗️ [Pull request guidelines](https://github.com/magit/magit/wiki/Pull-request-guidelines)
- ℹ️ [FAQ](https://docs.magit.vc/magit/FAQ.html)
- ℹ️ [Manual](https://docs.magit.vc/magit)
TL;DR We now use discussions for feature requests (not issues) and prefer
if you ask the community for support instead of the overworked maintainers.
Please also consider to contribute by supporting other users or by making
a [monetary donation](https://magit.vc/donate). — Thanks!
================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.md
================================================
---
title:
name: 🪳 Report a bug
about: Report a defect. Do not use this for support requests and feature suggestions.
note: Keep in sync with wiki/How-to-report-a-bug.md
---
Please do not ignore these instructions.
Please use your own words. If you really must use a LLM, at least disclose that upfront.
If you have just updated Magit, then restart Emacs. If that does not fix the issue, then also uninstall Magit and all dependencies that were updated at the same time, restart Emacs and then reinstall Magit.
The reason why this might fix the issue is that updating a package does not cause the old version to be unloaded, so you might end up with a franken-version; a mixture of parts of the old and new version being loaded at the same time. Worse it is possible for the old version to leak into the byte-code of the new version, which is why reinstalling might help.
Please explain,
(0) without using these lines as headings,
(1) what behavior you expected,
(2) what behavior you observed,
(3) and how we can reproduce the issue.
Please include a backtrace in your report. In most cases doing:
M-x toggle-debug-on-error RET
and then going through the steps again should result in a backtrace.
Also post the output of:
M-x magit-version RET
Before reporting a defect, please try to reproduce it using an Emacs instance, in which only Magit and its dependencies have been loaded. Other packages or your configuration should not be loaded. This makes it easier to determine whether the issue lays with Magit or something else.
If you run Magit from its Git repository, then you can do so using:
$ cd /path/to/magit
$ make emacs-Q
Alternatively, run:
M-x magit-emacs-Q-command RET
to save a shell command to the `kill-ring` and the system's clip-board, which you can then copy into a shell to run.
Finally, if that didn't work and you have installed Magit from Melpa, then run commands similar to the ones above, but use tab completion to replace the various Ns with the correct versions:
$ cd ~/.emacs.d/elpa/magit-N
$ emacs -Q --debug-init --eval '(setq debug-on-error t)' -L ../cond-let-N -L ../llama-N -L ../magit-section -L ../seq-N -L ../transient-N -L ../with-editor-N -L . -l magit
More debugging tools are described in the manual.
https://docs.magit.vc/magit/Debugging-Tools.html
---- now delete this line and everything above ----
================================================
FILE: .github/ISSUE_TEMPLATE/config.yml
================================================
blank_issues_enabled: false
contact_links:
- name: "⁉️ Unsure if this is a bug, suggestion or support request 👉 please open a discussion 👈"
url: https://github.com/magit/magit/discussions/categories/triage
about: Start a discussion without having to specify its kind upfront.
- name: "💕 Please support my work on Magit and other Emacs projects"
url: https://github.com/sponsors/tarsius
about: Thanks! Any support helps. These donations from users are my only income.
- name: "💡 Suggest a feature 👉 please open a discussion instead of an issue 👈"
url: https://github.com/magit/magit/discussions/categories/ideas
about: Start a discussion suggesting an improvement or a new feature.
- name: "🆘 Ask the community for support"
url: https://www.reddit.com/r/emacs
about: Please also consider supporting others.
- name: "🆘 Ask the maintainers for support 👉 please open a discussion 👈"
url: https://github.com/magit/magit/discussions/categories/support
about: Please keep in mind that our bandwidth is limited.
- name: "ℹ️ Magit FAQ"
url: https://docs.magit.vc/magit/FAQ.html
about: Others might have had the same question before.
- name: "ℹ️ Magit Manual"
url: https://docs.magit.vc/magit
about: The fine manual may also be of use.
================================================
FILE: .github/PULL_REQUEST_TEMPLATE
================================================
=================================================================
Please use your own words.
=================================================================
Please use your own words, in this summary, commit messages and code. If you really must use a LLM, at least disclose that upfront.
=================================================================
Use a dedicated feature branch
=================================================================
Please use a dedicated feature branch for your feature request, instead of asking us to merge "your-fork/main" into the "origin/main". The use of dedicated branches makes it much more convenient to deal with pull-requests, especially when using Magit to do so.
If you were about to open a pull-request asking us to merge your version of "main", then see [1] for instructions on how to quickly fix that and some information on why we ask you to do so.
Additionally we ask you to allow us to push to the branch you want us to merge. We might want to push additional commits and/or make minor changes. Please make sure the box next to "Allow edits from maintainers" is checked before creating the pull-request.
[1]: https://github.com/magit/magit/wiki/Dedicated-pull-request-branches
=================================================================
Do NOT use Github to edit files and create commit messages
=================================================================
Unless you are aware of all the pitfalls and take great care to avoid them, the use of Github results in many small defects, including but not limited to trailing whitespace, commit messages containing overlong lines and no newline at the very end, and "GitHub <noreply@github.com>" being used as the committer. The last one cannot even be avoided, which I consider as an affront.
Github is an insufficient interface for editing files and creating commits. Please don't do it when contributing to Magit.
=================================================================
What you should write here
=================================================================
Please summarize the changes made in the commits. Explain why you are making these changes, not just what changes you are making. This also applies to the commit messages.
=================================================================
How to update the manual
=================================================================
Edit only "magit.org" and "magit-section.org". To update "magit.texi" and "magit-section.texi" run "make texi".
================================================
FILE: .github/workflows/compile.yml
================================================
name: Compile
on: [push, pull_request]
jobs:
compile:
name: Compile
uses: | # zizmor: ignore[unpinned-uses] same maintainer as this repo
emacscollective/workflows/.github/workflows/compile.yml@main
permissions: {}
================================================
FILE: .github/workflows/manual.yml
================================================
name: Manual
on:
push:
branches: main
tags: "v[0-9]+.[0-9]+.[0-9]+"
jobs:
manual:
name: Manual
uses: | # zizmor: ignore[unpinned-uses] same maintainer as this repo
emacscollective/workflows/.github/workflows/manual.yml@main
permissions: {}
secrets:
rclone_config: ${{ secrets.RCLONE_CONFIG }}
================================================
FILE: .github/workflows/stats.yml
================================================
name: Statistics
on:
push:
branches: main
schedule:
- cron: '3 13 * * 1'
jobs:
stats:
name: Statistics
uses: | # zizmor: ignore[unpinned-uses] same maintainer as this repo
emacscollective/workflows/.github/workflows/stats.yml@main
permissions: {}
secrets:
rclone_config: ${{ secrets.RCLONE_CONFIG }}
================================================
FILE: .github/workflows/test.yml
================================================
name: Test
on: [push, pull_request]
jobs:
test:
name: Test
uses: | # zizmor: ignore[unpinned-uses] same maintainer as this repo
emacscollective/workflows/.github/workflows/test.yml@main
permissions: {}
================================================
FILE: .gitignore
================================================
/config.mk
/docs/*.html
/docs/*.info
/docs/*.pdf
/docs/*.texi
/docs/.revdesc
/docs/dir
/docs/stats/
/lisp/*-autoloads.el
/lisp/*-pkg.el
/lisp/*.elc
/docs/magit/
/docs/magit-section/
/lisp/magit-version.el
/docs/*.epub
/docs/META-INF/
/docs/OEBPS/
/docs/epub.xml
/docs/mimetype
*~
/*.tar
/*.tar.gz
================================================
FILE: .mailmap
================================================
Alex Dunn <adunn@ucsb.edu> <dunn.alex@gmail.com>
Alex Ott <alexott@gmail.com> <ott@flash.lan>
Allen Li <darkfeline@felesatra.moe>
Andrew Zipperer <atzipperer@gmail.com>
Andriy Kmit' <dev@madand.net>
Bar Magal <bmagamb@gmail.com>
Basil L. Contovounesios <basil@contovou.net> <contovob@tcd.ie>
Benjamin Motz <benjamin.motz@mailbox.org> <Benjamin.Motz@3ds.com>
Bradley Wright <brad@intranation.com> <bradley.wright@digital.cabinet-office.gov.uk>
Buster Copley <buster@buster.me.uk>
Chillar Anand <anand21nanda@gmail.com>
Christophe Junke <junke.christophe@gmail.com> <christophe.junke@parrot.com>
Damien Cassou <damien@cassou.me> <damien.cassou@gmail.com>
Daniel Fleischer <danflscr@gmail.com> danielfleischer <daniel.fleischer@amobee.com>
David Abrahams <dave@boostpro.com>
David Ellison <davidehellison@gmail.com> <davide@voicebox.com>
Dean Kariniemi <8913263+d3k4r@users.noreply.github.com>
Dennis Paskorz <dennis@walltowall.com>
Dominique Quatravaux <dominique.quatravaux@epfl.ch> <domq@google.com>
Evan Torrie <etorrie@gmail.com> <evantorrie@users.noreply.github.com>
Evgkeni Sampelnikof <esabof@gmail.com> <faceoffuture@yahoo.gr>
Evgkeni Sampelnikof <esabof@gmail.com> <sabof@example.com>
Fabian Wiget <fabacino@gmail.com>
Fritz Stelzer <brotzeitmacher@gmail.com>
Graham Clark <grclark@gmail.com> <gcla@moria.(none)>
Ivan Brennan <ivan.brennan@gmail.com>
Jean-Louis Giordano <jean-louis@jawaninja.com>
Jesse Alama <jesse.alama@gmail.com> <alama@stanford.edu>
Joakim Jalap <JOJA@stoneridge.com>
Johann Klähn <johann@jklaehn.de> <kljohann@gmail.com>
Jon Vanderwijk <jonathn@github.com>
Jonas Bernoulli <jonas@bernoul.li>
Jonas Bernoulli <jonas@bernoul.li> <jonasbernoulli@gmail.com>
Kan-Ru Chen <kanru@kanru.info> <koster@debian.org>
Leo Liu <sdl.web@gmail.com>
Li Chen <me@linux.beauty>
Lucius Chen <chenyh572@gmail.com>
Luís Oliveira <luismbo@gmail.com> <loliveira@common-lisp.net>
Luís Oliveira <luismbo@gmail.com> Luís Borges de Oliveira <lbo@siscog.pt>
Marc Herbert <marc.herbert@gmail.com> <Marc.Herbert+git@gmail.com>
Marc Herbert <marc.herbert@gmail.com> <marc.herbert+git@gmail.com>
Marcel Wolf <mwolf@ml1.net> marcel-wolf
Marian Schubert <marian.schubert@gmail.com> <marian.schubert@gooddata.com>
Marius Vollmer <marius.vollmer@gmail.com> <marius.vollmer@nokia.com>
Marius Vollmer <marius.vollmer@gmail.com> <marius.vollmer@uni-dortmund.de>
Marius Vollmer <marius.vollmer@gmail.com> <mvo@bright.(none)>
Marius Vollmer <marius.vollmer@gmail.com> <mvo@esdhcp03984.research.nokia.com>
Marius Vollmer <marius.vollmer@gmail.com> <mvo@manamana.(none)>
Mark Karpov <markkarpov@opmbx.org>
Markus Beppler <65115492+mbeppler@users.noreply.github.com>
N. Troy de Freitas <me@ntdef.com> <9503857+ntdef@users.noreply.github.com>
Naoya Yamashita <conao3@gmail.com>
Natalie Weizenbaum <nex342@gmail.com> Nathan Weizenbaum
Noam Postavsky <npostavs@users.sourceforge.net>
Noam Postavsky <npostavs@users.sourceforge.net> <github.10.npostavs@spamgourmet.com>
Ola Nilsson <ola.nilsson@gmail.com> Ola x Nilsson <olani@axis.com>
Pancho Horrillo <pancho@pancho.name>
Peter J. Weisberg <pj@irregularexpressions.net>
Peter Vasil <mail@petervasil.net>
Phil Sainty <phil@catalyst.net.nz> <phil-s@users.noreply.github.com>
Philippe Vaucher <philippe.vaucher@gmail.com> <philippe@stvs.ch>
Raimon Grau <raimon@3scale.net> <raimonster@gmail.com>
Robert Irelan <robert.irelan@bytedance.com>
Ron Parker <rdparker@gmail.com> <rparker@a123systems.com>
Rémi Vanicat <vanicat@debian.org> <github.20.vanicat@mamber.net>
Rüdiger Sonderfeld <ruediger@c-plusplus.net> <ruediger@c-plusplus.de>
Sean Allred <code@seanallred.com> <allred.sean@gmail.com>
Seong-Kook Shin <cinsky@gmail.com>
Silent Sphere <silentsphere110@gmail.com>
Sylvain Rousseau <thisirs@gmail.com>
Syohei Yoshida <syohex@gmail.com>
Sébastien Gross <seb@chezwam.org> <seb•ɑƬ•chezwam•ɖɵʈ•org>
Thierry Volpiatto <thievol@posteo.net> <thierry.volpiatto@gmail.com>
Tunc Uzlu <bb2020@users.noreply.github.com>
Wei Huang <weih@opera.com>
Wilfred Hughes <me@wilfred.me.uk> <whughes@ahl.com>
Wouter Bolsterlee <wouter@bolsterl.ee>
Yann Hodique <yann.hodique@gmail.com> <hodiquey@vmware.com>
Yann Hodique <yann.hodique@gmail.com> <yann.hodique@bromium.com>
Yann Hodique <yann.hodique@gmail.com> <yann@jarvis.local>
Yann Hodique <yann.hodique@gmail.com> <yhodique@vmware.com>
Yuichi Higashi <aaa707b@gmail.com>
Óscar Fuentes <ofv@wanadoo.es> <ofv@wanadoo.es>
Óscar Fuentes <ofv@wanadoo.es> <oscar@nc10>
Óscar Fuentes <ofv@wanadoo.es> <oscar@qcore>
================================================
FILE: CHANGELOG
================================================
# -*- mode: org -*-
* v4.5.0 2026-01-01
- Removed support for loading Magit extensions from ".git/config".
Please [[https://github.com/magit/magit/commit/d662ec107e74a05a0348ca75c89ebd127d658656][use ~.dir-locals.el~ instead]]. d662ec107e
- Reworked how the global ~magit-auto-revert-mode~ is, or is not,
enabled at startup. Enabling ~global-auto-revert-mode~ now disables
this mode. 38a916f555..de766d2968 et al.
- Simplified ~magit-wip-mode~. This involves removing all other wip
modes (which allowed using only a subset of the protection offered
by ~magit-wip-mode~) and using the new ~magit-before-change-functions~
and ~magit-after-apply-functions~ hooks. 98ef107037..fa629ad5b5
- Added experimental support for calling Lisp hooks from Git hooks,
and added a few such hooks: ~magit-common-git-post-commit-functions~,
~magit-git-post-commit-functions~, ~magit-git-post-merge-functions~
and ~magit-git-post-rewrite-functions~.
- Replaced option ~magit-section-visibility-indicator~ (singluar) with
new option ~magit-section-visibility-indicators~ (plurarl) to better
support emacs sessions that have both terminal and gui frames.
2d8f43e681
- ~mouse-set-point~ is now remapped to Magit's variant. fa5906621a
- ~magit-autoloads~ is now loaded exactly once. 3d1a008f18
- Fixed custom type of ~magit-blame-styles~. 84c5c8c8c6
- Fixes regression in ~magit-rebase-autosquash~. It no longer excluded
the merge-base. 54e460a701
- A few hook functions were not autoloaded. #5464
- Some refinements were calculated for the diff in the commit
message buffer, despite not actually being displayed. #5483
- Commands for showing logs for wip branches were no longer displayed
in the log menu, despite ~magit-wip-mode~ being enabled. #5488
- Added new option ~magit-wip-debug~. 655bc502a3
- Various build improvements.
* v4.4.2 2025-10-06
- Addressed harmless compiler warning.
* v4.4.1 2025-10-06
- Added new option ~magit-log-trailer-labels~. #5432
- Added new command ~magit-delete-shelved-branch~. 31c0ae17d3
- Added new variable ~magit-save-repository-buffers-predicate~. #5450
- Fixed saving the value of the menus ~magit-diff~, ~magit-log~,
~magit-diff-refresh~ and ~magit-log-refresh~. c7ba53b4b4
- A form from the ~cond-let~ library made it into the autoloads file,
where that library isn't being loaded. #5451
- ~magit-revert-rev-file-buffer~ did not respect a value of ~nil~ for
~enable-local-variables~. 5eb31a419a
- Improved commands for jumping to specific sections in revision
buffers. #5442
- Improved consistency of scroll command bindings. #5453
- It is possible again to exit ~magit-completing-read-multiple~ with
no input if REQUIRE-MATCH is ~t~. b5066e5fa4
- Diffs that appear in logs could not be parsed in some edge cases.
#5454
* v4.4.0 2025-09-09
- At least Emacs 28.1 is required now. Emacs 30.1 was released
earlier this year, so Emacs "oldoldstable" is still supported.
- Code for tracking a position within a file across versions and
diffs, and the commands that build on that to allow jumping to
the same location in another version or diff, are undergoing
heavy refactoring and improvements. This is paying off technical
dept and prepares for upcoming user-level improvements as well
as for new features. Some changes in behavior already appear in
this release, as described below.
- For staged and unstaged changes, ~magit-diff-visit-file~ (~RET~) now
always visits the blob actually corresponding to the line at point,
as it already did for committed changes. Previously it failed to
visit the index blob from an unstaged removed line when that file
has staged changes; and it failed to visit the index blob from a
staged added line.
Visiting the file in the worktree is very useful, but, instead of
~RET~, I recommend using ~C-<return>~ (~magit-diff-visit-worktree-file~).
The new option ~magit-diff-visit-prefer-worktree~ allows restoring
the old behavior. See [[https://docs.magit.vc/magit/Visiting-Files-and-Blobs-from-a-Diff.html][Visiting Files and Blobs from a Diff]].
- "Blob navigation" is now aware of index blobs. It is possible to
navigate between such blobs, and the HEAD blob or the file on disk,
using the same key bindings used to time travel from one committed
blob to another. See [[https://docs.magit.vc/magit/Minor-Mode-for-Buffers-Visiting-Blobs.html][Minor Mode for Buffers Visiting Blobs]] and
[[https://docs.magit.vc/magit/Commands-for-Buffers-Visiting-Files.html][Commands for Buffers Visiting Files]].
- When quitting a blob-visiting buffer with ~q~, it is no longer
killed, iff it is being displayed in an additional window. The
behavior can be changed by binding ~q~ in ~magit-blob-mode-map~ to
one of the commands ~magit-bury-or-kill-buffer~, ~magit-bury-buffer~,
or ~magit-kill-this-buffer~. The former two are new commands.
731642756f
- ~magit-status-here~ now places the cursor within the diff of unstaged
changes, if the current line in a file-visiting buffer has unstaged
changes. If it does not, then it falls back to going to the
corresponding staged change. #4814
- Even though ~auto-revert-mode~ is enabled, if that has not yet kicked
in and the user visits a file that needs reverting, they used to be
asked to confirm the revert. efaf91d8af
- ~magit-completing-read~ and ~magit-completing-read-multiple~ can now
require non-empty input. If REQUIRE-MATCH is ~any~, then the user
can exit with input that does not appear in the collection, but
is not allowed to exit with zero input. #5422
- ~magit-completing-read-multiple~ now adds the default choice to the
set of valid choices. 7167f70665
- ~magit-read-branch-or-commit~ can now exclude more than one possible
choice from the set of valid choices. 10c366ed52
- Improved minibuffer input for worktree commands, including adding
new option ~magit-read-worktree-directory-function~.
- Section visibility indicators can now be displayed in the left
margin. #5424
- References in the ~refs/pullreqs~ namespace are no longer offered
as completion candidates. 87ddd8f7c4
- Improved font-lock in ~git-rebase-mode~. 3857b8bce9..9654f5e094
- Added new face ~magit-diff-conflict-heading-highlight~. 2e76ec9337
- Added new command ~magit-revision-jump~, a menu for use in
~magit-revision-mode~, bound to ~j~. acf71f7eb4
- ~magit-dired-jump~ now supports ~magit-repolist-mode~. 8c4a903886
- Fixed a regression ~magit--refresh-buffer-set-positions~, added in
v4.3.7, which messed up the window-start. 406a3094a8
- ~magit-setup-buffer~ and ~magit-refresh-buffer~ take two new keyword
arguments INITIAL-SECTION and SELECT-SECTION. Two arguments of
~magit-setup-buffer-internal~ are now keyword arguments.
ced0984540, c4def6d99a
- All text inserted into Magit buffers that previously used ~face~
now use ~font-lock-face~ and ~magit-section-mode~ can therefore set
~font-lock-defaults~. Previously if some third-party packages used
~font-lock-add-keywords~, some of Magit's own fontification would
be lost. Third-party packages that use ~magit-section-mode~, might
need to be adjusted accordingly. 7de0f1335f, b4768acb1f
- Daring to use my new Cond-Let package and other shorthands.
08dafc1732..1c48327a06, b377adb68c
* v4.3.8 2025-07-05
Bugfixes:
- In v4.3.7 we started to restore the display-start positions of the
windows displaying a buffer that is being refreshed, but in log
buffers that is undesirable. After creating a new commit we want
that to immediately be displayed at the top of windows displaying
log buffers. #5403
- Refreshing was skipped after discarding all untracked files.
- When sub-directories contain ".gitignore" files, then invoking
~magit-discard~ on the "Untracked files" section did not necessarily
remove the same set of files as listed in that section. (At least
it did show the files, which would be removed, in the confirmation
prompt.) #5405
* v4.3.7 2025-07-01
- Refreshing a buffer causes its content to be recreated, which can
result in scrolling. Now we attempt to restore the display-start
positions of the windows displaying the buffer. #5403
- When running ~git~ for side-effects and that signals an error, we
did not augment the error message to inform the user that the full
output can be found in the process buffer. When the error is not
signaled, we did already append that hint to the message. Also
added a new option, ~magit-show-process-buffer-hint~, for people who
are already aware of the process buffer and would like to avoid
the noisy reminder. #5396
Bugfixes:
- Some instructions inserted into rebase sequence buffers were not
prefixed with ~comment-start~, instead # was used unconditionally.
#5388
- Fixed a regression in v4.3.6, which caused a conflict between the
overlays used for section highlighting and section selection, if
both of these faces relied on the same face property (likely the
foreground color). #5389
- Hunks could remain painted as selected when navigating away. #5393
- The log arguments "--grep" and "--graph" are no longer mutually
exclusive, but we still dropped the latter when the former was
used. #5391
- ~magit-save-repository-buffers~ errored on older Emacs releases,
if the value of the variable by the same name is ~ask~. #5399
- ~magit-after-save-refresh-status~ did not honor ~magit-inhibit-refresh~.
d9d2f6c312
* v4.3.6 2025-06-01
- Generalized and heavily refactored the code, previously used only to
highlight diff-related sections and to paint hunks, so that it can
be used for other sections as well. The new implementation should
also be a bit faster. cfe4faaaf6^..c556fee1bd
- A single-section selection now requires a non-empty region.
6c4c16942a
- When creating a stash, "On <branch>: " is now offered as a second
future history element. 75c6191999, 9b81df36b4
- Added new commands ~git-rebase-drop~, ~git-rebase-alter~ and
~git-rebase-squish~. 479c467080, 9674c4755a
Bugfixes:
- Fixed issues concerning date handling in log margins. #5373
- The list of rebase actions in the status buffer could contain
invalid elements derived from comments in Git's list of such
actions. 91806dc729
- Applying the region used to fail, if some part of the same hunk but
outside the region has conflicts, even if the part in the region did
not. 9e551d9eb7
* v4.3.5 2025-05-14
Bugfixes:
- Fixed a v4.3.3 regression in inserting rebase actions into the
status buffer when stopping at the last commit. #5365
* v4.3.4 2025-05-13
- Arguments, that are normally set by cycling through the possible
values displayed in the menu, can now also be set using completion,
by using a prefix argument. #5362
Bugfixes:
- Matching references were no longer displayed on the first line of
revision buffers. 48b158500d
- Fixed a v4.3.3 regression in inserting rebase actions into the
status buffer when ~--rebase-merges~ is specified. #5365
- On the "Untracked files" section, ~k~ no longer worked as intended.
#5366
Also contains code and documentation cleanups and improvements.
* v4.3.3 2025-05-01
- ~magit-section-show-level~ now acts on all selected sections. #5354
- Inserting the list of commits being rebased into the status buffer
is now much faster. 8e72767262
- All rebase actions are now inserted into the status buffer.
69b310e109
- While editing the list of commits and actions to be rebased
~git-rebase-kill-line~ (~k~) on a commented line now uncomments it.
ff44ee1bc3
- Added new variants of commands that deal with files for use in Dired
buffers, and improved existing variants. In Dired, these commands
are available from ~magit-file-dispatch~ (~C-c M-g~). 542c2f8a75 et al.
- ~magit-branch-shelve~ now prepends the date to the refname, and
~magit-branch-unshelve~ removes such prefixes. 78ffd1a389
- The new function ~magit-insert-shelved-branch~ can be added to
~magit-refs-sections-hook~ to list shelved branches. d6b7784547
- Added new command ~magit-wip-purge~, which removes old branches
created by ~magit-wip-mode~. d5e0f3a639
- ~magit-blame-styles~ now supports inserting truncated commit hashes.
#4057
- Added new command ~magit-mouse-set-point~. 3c9e519197
Also contains code and documentation cleanups and improvements.
* v4.3.2 2025-04-01
- Removed legacy options ~magit-wip-*-mode-lighter~. 225ea6fd00
- ~magit-log-current~ now falls back to displaying the log for ~HEAD~ if
no branch is checked out, and the now redundant ~magit-log-head~ is
no longer displayed in the ~magit-log~ menu by default. c8b1e12bd5
- Renamed ~magit-merge-into~ to ~magit-merge-dissolve~ and changed the
key binding in the ~magit-merge~ menu from ~i~ to ~d~. The description
in that menu already was "dissolve". Do this to make it more
obvious that this command deletes the source branch after it has
been merged into the target branch. #4386
- Added new option ~magit-process-apply-ansi-colors~ (but discourage
its use). #5348
- Support for Ido has been moved out into a new package ~magit-ido~.
6aec967ee4
Bugfixes:
- ~magit-after-save-refresh-buffers~ did not respect
~magit-inhibit-refresh~. c0a8e694b9
- When washing of a section was delayed and it ends in an empty line,
that line was not always made part of the section. f6f25e6566
- In some cases section specific key bindings were not made available
as intended. 6ce1ece580, 3f79700f1b
- In some cases ~magit-toggle-buffer-lock~ has to uniquify buffer names
but failed to do so. #5330
- After applying a hunk, the buffer was refreshed twice. #5343
- The diff shown by ~magit-diff-paths~ was not washed. #5093
Also contains more code and documentation cleanups and improvements.
* v4.3.1 2025-03-02
- Added new option ~magit-format-file-function,~ and two functions to
optionally prefix file names with icons, with the help of either
~all-the-icons~ or ~nerd-icons~. #5308
- Added new commands ~magit-previous-reference~ and ~magit-next-reference~,
with entry point ~C-c C-r~. Enable ~repeat-mode~ to keep navigating with
~p~ and ~n~. #5310
Bugfixes:
- ~magit-commit-revise~ failed if no arguments were used. #5306
- Some arguments were missing from diff menus when invoked from
the status buffer. #5309
- In some menus the bindings for ~--signoff~ conflicted with those for
other arguments. #5312
- Fixed unlikely issue in ~magit-git-mergetool~. 66e3ddffe4
- Unknown Git trailers resulted in a display error while writing
commit messages. 8c27c910ca
- When the word at point matched the name of a branch, that was
unconditionally treated as the commit-at-point. This should only be
done when that word is shown using an appropriate face. 2b3f2cb9ad
- Fixed bug in ~magit-section-cycle-diffs~. #5319
- ~magit-stage-untracked~ was a bit fragile. #5325
* v4.3.0 2025-02-04
- Added new option ~magit-refs-show-branch-descriptions~. 42ed6c1966
- When a stash cannot be applied using the trivial method, the user is
offered some fallback methods. The presentation of those has been
improved. #5253 a08b4dd513
- Added new hook options ~magit-revision-wash-message-hook~ and
~magit-log-wash-summary-hook~, and populate them with new and
existing highlighting functions, making it easier to remove default
highlighting and to add custom highlighting. This also increases
consistency between how commit summaries are shown in logs and when
displaying complete commit messages. f54fce0ecc..b86fe009e2
- ~amend!~ markers are now highlighted like ~fixup!~ and ~squash!~ markers.
#5261
- ~magit-commit-create~ no longer amends to HEAD when called with a
prefix argument. The ~magit-commit~ menu offers four amend commands.
That should be good enough. 5e60aa72e5
- ~magit-commit~ no longer features the obscure ~magit-commit-reshelve~ by
default, but it can quickly be reinstated, using the level mechanism.
20eb323b47
- Added new commands ~magit-commit-alter~ and ~magit-commit-revise~,
completing the already extensive set of "fixup" commands. #5261
- Improved commit menu, documentation and implementation details.
#5261
- The branch at point is detected in more contexts now, i.e., when
there is not actually a branch at point, but one can unambiguously
be derived from the thing at point. 4876f1921e
- Reworked ~magit-process-password-prompt-regexps~ to be more permissive
and better structured. Hopefully that means we have to extend it
less frequently going forward, when users run into new prompts.
#5288
- Speed up listing untracked files in the status buffer, simplify how
the list is configured, and give up on optionally using a tree.
#5284
- Argument ~--signoff~ is now available in all menus that create commits.
However, it is no longer shown in any menu by default. See the end
of [[https://docs.magit.vc/transient/Enabling-and-Disabling-Suffixes.html][Enabling and Disabling Suffixes]] to learn how to enable it in all
menus at once in a single action. #5297
- Began using the ~##~ macro from the ~llama~ package. 0a64982100
- Stopped depending on the ~dash~ package. e40e8f1994
Bug fixes:
- When applying a stash, it was not always discovered when the trivial
method was unsuccessful, and so the user was not offered the use of
a fallback method. #5253 929eb4dca5
- ~git-commit.el~ did not require ~magit-process~, which was only a
problem when it is loaded without also loading the rest of Magit.
#5280.
- The use of an external diff drivers was not prevented in some
places. #5282
- ~magit-blame-maybe-show-message~ did not protect against interpreting
% in commit messages as %-specs. d0e795f423
- Parts of commit message headers lost the intended background color.
46c3d8b0ad
- The confirmation prompt of ~magit-worktree-delete~ failed to name the
affected worktree. #5286
- The wrong suffix color was used for ~magit-commit-absorb~ and
~magit-commit-autofixup~. bfadd41079
- ~magit-stash-index~ did not use ~magit-stash-read-message-function~.
#5295
- Fixed an error that occurred when creating ~magit-hunk-section-map~
and the user has disabled ~smerge-command-prefix~. The same bug
exists in Emacs since 29.1, so this will only help users stuck
on Emacs 28. #5300
- When the value of a diff or log menu was being initialized from the
arguments in the current buffer and the diff/log was already limited
to a set of files, then all other arguments were discarded. #5304
* v4.2.0 2025-01-01
- At least Git 2.25.0 is required now. 033a0c0cdc
- At least Emacs 27.1 is required now. c1a86066e8
- Added new command ~magit-toggle-profiling~. f637dd1877
- Added new command ~magit-toggle-subprocess-record~. ec1f403af1
Bug fixes:
- Fixed a regression in ~transient-init-value~. 5b4c4aea1b
- Fixed setting ~fill-paragraph-function~ in
~git-commit-setup-changelog-support~. 139e0fcff3
- ~magit-log-refresh~ lacked the ~--since~ and ~--until~ arguments, which
were already available in ~magit-log~. 3ecebe8d11
- Enabling verbose output in ~magit-commit-absorb~ caused an error.
#5272
- In logs, no longer strip ~heads/~ prefix from branch names if a tag
with the same name exists. 5cb3492464
- ~magit-list-special-refnames~ returned nonsense. #5277
* v4.1.3 2024-12-06
- For most important sections, if an error occurs while inserting the
section, the error message is now displayed in the section body.
#5255
- ~magit-submodule-populate~ now supports ~--recursive~. #5191 #5256
- Improved ~magit-process-password-prompt-regexps~. #5257
Bug fixes:
- ~magit-stash-pop~ and ~magit-stash-apply~ sometimes installed conflicts
for the user to resolve that are more complicated than they need to
be. #5253
- ~magit-stash-push~ placed ~--~ before other arguments. #5260
- ~magit-autorevert~ failed to require ~magit-process~. #5263
* v4.1.2 2024-11-02
- Add various minor process logging improvements:
5b30c05d3a magit--git-insert: Collapse process section if appropriate
b11524120e magit--git-insert: Optionally always log to process buffer
cd6cf89d6a Use different face for debug-only process sections
bba06845de magit-process-insert-section: Improve file-path comparison
f2a6133443 magit-run-git-async: No longer clutter ~*Messages*~ buffer
Bug fixes:
- If the left margin was in use before ~magit-blame-mode~ started using
that margin, then the old width was not restored when the mode was
disabled. #5236
- Prior to Tramp being loaded, setting ~magit-tramp-pipe-stty-settings~
to ~nil~ resulted in an error, due to ~tramp-pipe-stty-settings~ not
being bound yet. #5240
- ~magit-copy-section-value~ no longer did anything for most section
types. #5244.
- Global git arguments often got added twice to the list of arguments
ultimately passed to git. 914285a5e8
- Inserting the headers of status buffers involves temporary changes
to ~magit-insert-section-hook~. These changes were not restricted to
the current buffer, causing errors when ~magit-git-debug~ is enabled
and we thus insert sections in the process buffer, while the status
buffer is being refreshed. 11e13640c4
- Some ~git~ errors were not logged despite ~magit-git-debug~ being
enabled. 874fb0fede
- ~magit-browse-thing~ and ~magit-visit-thing~ tried to turn anything
at point into an URL. Now the bail if there is no URL at point.
7c842b8ac0
* v4.1.1 2024-10-01
- Avoid unnecessary work when ~auto-revert-remote-files~ is ~nil~. #5222
- Improved default choice offered by ~magit-branch-reset~ and
~magit-reset-*~. #5230
Bug fixes:
- Added a workaround for a regression in Git v2.46.0. #5212
- Section-specific bindings were removed when a section was expanded
whose body is not inserted until the expansion takes place.
9395de2c94
- Addressed an incompatibility with Eglot. #5226
- Adapted to a change in ~define-globalized-minor-mode~ in Emacs 30,
which caused ~diff-hl-mode~ to be enabled in blob buffers. #5229
- When adding the commit at point to the completion defaults, it was
assumed that ~minibuffer-default-add-function~ cannot be nil.
6d0075f523
- ~magit-blame--format-string-1~ didn't handle a list of faces
correctly. 5395798301
- Addressed an incompatibility with Indent-Bars. #5233
* v4.1.0 2024-09-01
- The library ~git-commit.el~ is no longer distributed as a separate
package, ~git-commit~, but as part of the ~magit~ package.
- Improved ~magit-tag-release~'s consistency and handling of arguments.
#5102
- Updated tooling and other housekeeping.
Bug fixes:
- Only use an explicit range in ~magit-insert-recent-commits~, when also
using ~--graph~. With ~--graph~ it increases performance noticeably,
but without it decreases performance somewhat. #5075
- ~magit-completing-read-multiple~ now shows the default choice in the
prompt, if a completion framework is used, for which that is useful.
#5205.
* Older releases
See ~docs/RelNotes/~.
================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.
================================================
FILE: Makefile
================================================
-include config.mk
include default.mk
## ###################################################################
.PHONY: lisp docs \
install install-lisp install-docs install-info \
test test-interactive magit \
clean clean-lisp clean-docs clean-archives \
stats \
dist versionlib magit-$(VERSION).tar.gz
all: lisp docs
help:
$(info )
$(info See default.mk for variables you might want to set.)
$(info )
$(info Build)
$(info =====)
$(info )
$(info make [all] -- Compile elisp and documentation)
$(info make lisp -- Compile elisp)
$(info make redo -- Re-compile elisp)
$(info make docs -- Generate all manual formats)
$(info make redo-docs -- Re-generate all manual formats)
$(info make texi -- Generate texi manuals)
$(info make info -- Generate info manuals)
$(info make html -- Generate html manual files)
$(info make html-dir -- Generate html manual directories)
$(info make pdf -- Generate pdf manuals)
$(info make epub -- Generate epub manuals)
$(info )
$(info Install)
$(info =======)
$(info )
$(info make install -- Install elisp and documentation)
$(info make install-lisp -- Install elisp)
$(info make install-docs -- Install all documentation)
$(info make install-info -- Install info manuals only)
$(info )
$(info Clean)
$(info ====)
$(info )
$(info make clean -- Clean elisp, documentation and tarball)
$(info make clean-lisp -- Clean elisp)
$(info make clean-docs -- Clean docs)
$(info make clean-archives -- Clean release tarball)
$(info make clean-all -- Clean everything except tracked texi)
$(info make clean-stats -- Clean stats)
$(info )
$(info Test)
$(info ====)
$(info )
$(info make test -- Run tests)
$(info make test-interactive -- Run tests interactively)
$(info make emacs-Q -- Run emacs -Q plus Magit)
$(info make check-declare -- Check function declarations)
$(info )
$(info Release Management)
$(info ==================)
$(info )
$(info make authors -- Regenerate AUTHORS.md)
$(info make publish -- Publish snapshot manuals)
$(info make release -- Publish release manuals)
$(info make dist -- Create tarballs)
$(info make stats -- Regenerate statistics)
$(info make stats-upload -- Publish statistics)
@printf "\n"
## Build #############################################################
lisp:
@$(MAKE) -C lisp lisp
@$(MAKE) -C test lisp
redo: clean-lisp lisp
docs:
@$(MAKE) -C docs docs
redo-docs:
@$(MAKE) -C docs redo-docs
texi:
@$(MAKE) -C docs texi
info:
@$(MAKE) -C docs info
html:
@$(MAKE) -C docs html
html-dir:
@$(MAKE) -C docs html-dir
pdf:
@$(MAKE) -C docs pdf
epub:
@$(MAKE) -C docs epub
## Install ###########################################################
install: install-lisp install-docs
install-lisp: lisp
@$(MAKE) -C lisp install
install-docs: docs
@$(MAKE) -C docs install-docs
install-info: info
@$(MAKE) -C docs install-info
## Test ##############################################################
test: lisp
@$(MAKE) -C test test
test-interactive:
@$(MAKE) -C test test-interactive
emacs-Q:
@$(MAKE) -C lisp emacs-Q
check-declare:
@$(MAKE) -C lisp check-declare
## Clean #############################################################
clean: clean-lisp clean-docs clean-test clean-archives
clean-lisp:
@$(MAKE) -C lisp clean
clean-docs:
@$(MAKE) -C docs clean
clean-test:
@$(MAKE) -C test clean
clean-archives:
@$(RM) *.tar.gz *.tar lisp/magit-version.el
@$(RMDIR) magit-$(VERSION)
clean-all: clean clean-stats
clean-stats:
@$(MAKE) -C docs clean-stats
## Release management ################################################
authors:
@$(MAKE) -C docs authors
publish:
@$(MAKE) -C docs publish
release:
@$(MAKE) -C docs release
dist: clean-docs clean-archives versionlib info magit-$(VERSION).tar.gz
@$(RMDIR) magit-$(VERSION)
@$(RM) magit-version.el
versionlib:
@$(MAKE) -C lisp versionlib
DIST_ROOT_FILES = LICENSE default.mk Makefile README.md CHANGELOG
DIST_LISP_FILES = $(addprefix lisp/,$(ELS) magit-version.el Makefile)
DIST_DOCS_FILES = $(addprefix docs/,$(TEXIPAGES) AUTHORS.md Makefile)
magit-$(VERSION).tar.gz:
@printf "Packing $@\n"
@$(MKDIR) magit-$(VERSION)
@$(CP) $(DIST_ROOT_FILES) magit-$(VERSION)
@$(MKDIR) magit-$(VERSION)/lisp
@$(CP) $(DIST_LISP_FILES) magit-$(VERSION)/lisp
@$(MKDIR) magit-$(VERSION)/docs
@$(CP) $(DIST_DOCS_FILES) magit-$(VERSION)/docs
@$(TAR) cz --mtime=./magit-$(VERSION) -f magit-$(VERSION).tar.gz magit-$(VERSION)
## Statistics ########################################################
stats:
@$(MAKE) -C docs stats
stats-upload:
@$(MAKE) -C docs stats-upload
================================================
FILE: README.md
================================================
<div align="center"><img src="https://magit.vc/assets/magit-168x200px.png"/></div>
<h2 align="center">A Git Porcelain inside Emacs</h2>
<p align="center">
<a href="https://magit.vc"><b>homepage</b></a> |
<a href="https://docs.magit.vc"><b>manual</b></a> |
<a href="https://docs.magit.vc/magit/FAQ.html"><b>faq</b></a> |
<a href="https://github.com/magit/magit/wiki"><b>wiki</b></a> |
<a href="https://fosstodon.org/@tarsius"><b>mastodon</b></a>
</p>
<hr>
<p align="justify">
Magit is an interface to the version control system
<a href="https://git-scm.com">Git</a>, implemented as an
<a href="https://www.gnu.org/software/emacs">Emacs</a> package.
Magit aspires to be a complete Git porcelain. While we cannot
(yet) claim that Magit wraps and improves upon each and every Git
command, it is complete enough to allow even experienced Git users
to perform almost all of their daily version control tasks directly
from within Emacs. While many fine Git clients exist, only Magit
and Git itself deserve to be called porcelains.
</p>
<hr>
<div align="center">
Keeping its users <a href= "https://magit.vc/quotes/">this excited</a> is
<a href="https://magit.vc/stats/magit/authors.html#cumulated_added_lines_of_code_per_author">
a lot of work
</a>.
If Magit makes you <br> more productive too,
then <b>please consider making a donation</b>.
</div>
<div align="center">
<em>Thank you! — Jonas Bernoulli</em>
</div>
<br>
<div align="center">
<a href="https://github.com/sponsors/tarsius/">
<img title="Sponsor my work using Github Sponsors"
alt="Sponsor my work using Github Sponsors"
src="https://magit.vc/assets/donate/github-sponsors-50px.png"></a>
<a href="https://liberapay.com/magit/">
<img title="Sponsor my work using Liberapay"
alt="Sponsor my work using Liberapay"
src="https://magit.vc/assets/donate/liberapay-50px.png"></a>
<br>
<a href="https://opencollective.com/magit/">
<img title="Sponsor my work using Opencollective"
alt="Sponsor my work using Opencollective"
src="https://magit.vc/assets/donate/opencollective-50px.png"></a>
<a href="https://magit.vc/donate/paypal.html">
<img title="Sponsor my work using PayPal"
alt="Sponsor my work using PayPal"
src="https://magit.vc/assets/donate/paypal-50px.png"></a>
</div>
<br>
<div align="center">
Some alternative donation methods are <a href="https://magit.vc/donate/">available</a>.
</div>
<hr>
### Getting Started
If you are new to Magit, then either one of the following two
articles should help understanding how it differs from other Git
clients.
#### [Visual Magit walk-through](https://emacsair.me/2017/09/01/magit-walk-through)
If you are completely new to Magit, then this article is a good
visual introduction.
Almost everything that you see in Magit can be acted on by pressing
some key, but that's not obvious from just seeing how Magit looks.
The screenshots and accompanying text of this article explain how to
perform a variety of actions on Magit's output.
#### [Magit, the magical Git interface](https://emacsair.me/2017/09/01/the-magical-git-interface)
Magit differs significantly from other Git interfaces, and its
advantages are not immediately obvious simply from looking at a few
screenshots as presented in the preceding article.
This article discusses Magit's properties in somewhat more abstract
terms.
#### Video introductions
If you prefer [video](https://magit.vc/screencasts/) introductions,
head over to that page, where find a collection of such introductions
and other videos about Magit, by various creators.
***
### Support and Contributing
Magit has many users and very few maintainers, so we kindly ask to read
the appropriate guidelines before getting in contact. — Thanks!
- 🆘 [How to ask for help](https://github.com/magit/magit/discussions/4630)
- 🪳 [How to report a bug](https://github.com/magit/magit/wiki/How-to-report-a-bug)
- 💡 [How to suggest a feature](https://github.com/magit/magit/discussions/4631)
- 🏗️ [Pull request guidelines](https://github.com/magit/magit/wiki/Pull-request-guidelines)
- ℹ️ [FAQ](https://docs.magit.vc/magit/FAQ.html)
- ℹ️ [Manual](https://docs.magit.vc/magit)
TL;DR We now use discussions for feature requests (not issues) and prefer
if you ask the community for support instead of the overworked maintainers.
Please also consider to contribute by supporting other users or by making
a [monetary donation](https://magit.vc/donate). — Thanks!
***
### Acknowledgments
Magit was started by [Marius Vollmer][marius], and is now maintained by
[Jonas Bernoulli][jonas] and [Kyle Meyer][kyle]. Former maintainers are
[Nicolas Dudebout][nicolas], [Noam Postavsky][noam],
[Peter J. Weisberg][peter], [Phil Jackson][phil], [Rémi Vanicat][remi] and
[Yann Hodique][yann]. Many more people have [contributed code][authors],
suggested features or made monetary contributions.
Thanks to all of you, may (the history of) the source be with you!
***
[](https://github.com/magit/magit/actions/workflows/compile.yml)
[](https://github.com/magit/magit/actions/workflows/test.yml)
[](https://github.com/magit/magit/actions/workflows/manual.yml)
[](https://elpa.nongnu.org/nongnu/magit.html)
[](https://melpa.org/#/magit)
[](https://stable.melpa.org/#/magit)
[](https://repology.org/project/emacs%3Amagit/versions)
[authors]: https://magit.vc/stats/magit/authors.html
[jonas]: https://emacsair.me
[kyle]: https://kyleam.com
[marius]: https://github.com/mvollmer
[nicolas]: http://dudebout.com
[noam]: https://github.com/npostavs
[peter]: https://github.com/pjweisberg
[phil]: https://github.com/philjackson
[remi]: https://github.com/vanicat
[yann]: https://yann.hodique.info
================================================
FILE: default.mk
================================================
TOP := $(dir $(lastword $(MAKEFILE_LIST)))
DOMAIN ?= magit.vc
PKG = magit
PKGS = magit magit-section
## User options ######################################################
#
# You can override these settings in "config.mk" or on the command
# line.
#
# You might also want to set LOAD_PATH. If you do, then it must
# contain "-L .".
#
# If you don't do so, then the default is set in the "Load-Path"
# section below. The default assumes that all dependencies are
# installed either at "../<DEPENDENCY>", or when using package.el
# at "ELPA_DIR/<DEPENDENCY>-<HIGHEST-VERSION>".
PREFIX ?= /usr/local
sharedir ?= $(PREFIX)/share
lispdir ?= $(sharedir)/emacs/site-lisp/magit
infodir ?= $(sharedir)/info
docdir ?= $(sharedir)/doc/magit
CP ?= install -p -m 644
MKDIR ?= install -p -m 755 -d
RMDIR ?= rm -rf
TAR ?= tar
SED ?= sed
EMACS ?= emacs
EMACS_ARGS ?=
EMACS_Q_ARG ?= -Q
EMACS_BATCH ?= $(EMACS) $(EMACS_Q_ARG) --batch $(EMACS_ARGS) $(LOAD_PATH)
EMACS_ORG ?= $(EMACS) $(EMACS_Q_ARG) --batch $(EMACS_ARGS) $(ORG_LOAD_PATH)
EMACS_INTR ?= $(EMACS) $(EMACS_Q_ARG) $(EMACS_ARGS) $(LOAD_PATH)
LISP_EXTRA_TARGETS ?= check-declare
INSTALL_INFO ?= $(shell command -v ginstall-info || printf install-info)
MAKEINFO ?= makeinfo
MANUAL_HTML_ARGS ?= --css-ref https://$(DOMAIN)/assets/page.css
GITSTATS ?= gitstats
GITSTATS_DIR ?= $(TOP)docs/stats
GITSTATS_ARGS ?= -c style=https://magit.vc/assets/stats.css \
-c max_authors=180 -c graph_max_authors=7
## Files #############################################################
ORGPAGES = $(addsuffix .org,$(PKGS))
TEXIPAGES = $(addsuffix .texi,$(PKGS))
INFOPAGES = $(addsuffix .info,$(PKGS))
HTMLFILES = $(addsuffix .html,$(PKGS))
HTMLTOPS = $(addsuffix /index.html,$(PKGS))
HTMLDIRS = $(PKGS)
PDFFILES = $(addsuffix .pdf,$(PKGS))
EPUBFILES = $(addsuffix .epub,$(PKGS))
# When making changes here, also update "<nongnu.git>/elpa-packages".
ELS = git-commit.el
ELS += magit-section.el
ELS += magit-base.el
ELS += magit-git.el
ELS += magit-mode.el
ELS += magit-margin.el
ELS += magit-process.el
ELS += magit-transient.el
ELS += magit-autorevert.el
ELS += magit-core.el
ELS += magit-diff.el
ELS += magit-log.el
ELS += magit-wip.el
ELS += magit-reflog.el
ELS += magit-apply.el
ELS += magit-repos.el
ELS += magit.el
ELS += magit-status.el
ELS += magit-refs.el
ELS += magit-files.el
ELS += magit-reset.el
ELS += magit-branch.el
ELS += magit-merge.el
ELS += magit-tag.el
ELS += magit-worktree.el
ELS += magit-notes.el
ELS += magit-sequence.el
ELS += magit-commit.el
ELS += magit-remote.el
ELS += magit-clone.el
ELS += magit-fetch.el
ELS += magit-pull.el
ELS += magit-push.el
ELS += magit-patch.el
ELS += magit-bisect.el
ELS += magit-stash.el
ELS += magit-blame.el
ELS += magit-sparse-checkout.el
ELS += magit-submodule.el
ELS += magit-subtree.el
ELS += magit-ediff.el
ELS += magit-gitignore.el
ELS += magit-bundle.el
ELS += magit-extras.el
ELS += magit-dired.el
ELS += git-rebase.el
ELS += magit-bookmark.el
ELCS = $(ELS:.el=.elc)
## Versions ##########################################################
VERSION ?= $(shell \
test -e $(TOP).git && \
git describe --tags --abbrev=0 --always | cut -c2-)
REVDESC := $(shell test -e $(TOP).git && git describe --tags)
EMACS_VERSION = 28.1
EMACS_OLD := $(shell $(EMACS_BATCH) --eval \
"(and (version< emacs-version \"$(EMACS_VERSION)\") (princ \"true\"))")
ifeq "$(EMACS_OLD)" "true"
$(error At least version $(EMACS_VERSION) of Emacs is required)
endif
## Load-Path #########################################################
# Remember to also update magit-emacs-Q-command!
ifndef LOAD_PATH
USER_EMACS_DIR = $(HOME)/.emacs.d
ifeq "$(wildcard $(USER_EMACS_DIR))" ""
XDG_CONFIG_DIR = $(or $(XDG_CONFIG_HOME),$(HOME)/.config)
ifneq "$(wildcard $(XDG_CONFIG_DIR)/emacs)" ""
USER_EMACS_DIR = $(XDG_CONFIG_DIR)/emacs
endif
endif
ELPA_DIR ?= $(USER_EMACS_DIR)/elpa
COMPAT_DIR ?= $(shell \
find -L $(ELPA_DIR) -maxdepth 1 -regex '.*/compat-[.0-9]*' 2> /dev/null | \
sort | tail -n 1)
ifeq "$(COMPAT_DIR)" ""
COMPAT_DIR = $(TOP)../compat
endif
COND_LET_DIR ?= $(shell \
find -L $(ELPA_DIR) -maxdepth 1 -regex '.*/cond-let-[.0-9]*' 2> /dev/null | \
sort | tail -n 1)
ifeq "$(COND_LET_DIR)" ""
COND_LET_DIR = $(TOP)../cond-let
endif
LLAMA_DIR ?= $(shell \
find -L $(ELPA_DIR) -maxdepth 1 -regex '.*/llama-[.0-9]*' 2> /dev/null | \
sort | tail -n 1)
ifeq "$(LLAMA_DIR)" ""
LLAMA_DIR = $(TOP)../llama
endif
SEQ_DIR ?= $(shell \
find -L $(ELPA_DIR) -maxdepth 1 -regex '.*/seq-[.0-9]*' 2> /dev/null | \
sort | tail -n 1)
ifeq "$(SEQ_DIR)" ""
SEQ_DIR = $(TOP)../seq
endif
TRANSIENT_DIR ?= $(shell \
find -L $(ELPA_DIR) -maxdepth 1 -regex '.*/transient-[.0-9]*' 2> /dev/null | \
sort | tail -n 1)
ifeq "$(TRANSIENT_DIR)" ""
TRANSIENT_DIR = $(TOP)../transient/lisp
endif
WITH_EDITOR_DIR ?= $(shell \
find -L $(ELPA_DIR) -maxdepth 1 -regex '.*/with-editor-[.0-9]*' 2> /dev/null | \
sort | tail -n 1)
ifeq "$(WITH_EDITOR_DIR)" ""
WITH_EDITOR_DIR = $(TOP)../with-editor/lisp
endif
MAGIT_SECTION_DIR ?= $(shell \
find -L $(ELPA_DIR) -maxdepth 1 -regex '.*/magit-section-[.0-9]*' 2> /dev/null | \
sort | tail -n 1)
SYSTYPE := $(shell $(EMACS) -Q --batch --eval "(princ system-type)")
ifeq ($(SYSTYPE), windows-nt)
CYGPATH := $(shell cygpath --version 2>/dev/null)
endif
LOAD_PATH = -L .
# When making changes here, then don't forget to adjust DEPS below,
# ".github/ISSUE_TEMPLATE/bug_report.md", `magit-emacs-Q-command'
# and the "Installing from the Git Repository" info node accordingly.
# Also run "rgrep \b<another-package\b", to find other places where
# a newly added dependency might have to be mentioned as well. Also
# remember that DEPS of packages that depend on Magit also have to
# be updated.
ifdef CYGPATH
LOAD_PATH += -L $(shell cygpath --mixed $(COMPAT_DIR))
LOAD_PATH += -L $(shell cygpath --mixed $(COND_LET_DIR))
LOAD_PATH += -L $(shell cygpath --mixed $(LLAMA_DIR))
LOAD_PATH += -L $(shell cygpath --mixed $(SEQ_DIR))
LOAD_PATH += -L $(shell cygpath --mixed $(TRANSIENT_DIR))
LOAD_PATH += -L $(shell cygpath --mixed $(WITH_EDITOR_DIR))
ifneq "$(MAGIT_SECTION_DIR)" ""
LOAD_PATH += -L $(shell cygpath --mixed $(MAGIT_SECTION_DIR))
endif
else
LOAD_PATH += -L $(COMPAT_DIR)
LOAD_PATH += -L $(COND_LET_DIR)
LOAD_PATH += -L $(LLAMA_DIR)
LOAD_PATH += -L $(SEQ_DIR)
LOAD_PATH += -L $(TRANSIENT_DIR)
LOAD_PATH += -L $(WITH_EDITOR_DIR)
ifneq "$(MAGIT_SECTION_DIR)" ""
LOAD_PATH += -L $(MAGIT_SECTION_DIR)
endif
endif
endif # ifndef LOAD_PATH
ORG_LOAD_PATH ?= -L ../../org/lisp
## Dependencies ######################################################
# This isn't used by make, but is needed for the Compile ci workflow.
DEPS = compat
DEPS += cond-let
DEPS += llama
DEPS += seq
DEPS += transient/lisp
DEPS += with-editor/lisp
## Publish ###########################################################
DOCBOOK_XSL ?= /usr/share/xml/docbook/stylesheet/docbook-xsl/epub/docbook.xsl
EPUBTRASH = epub.xml META-INF OEBPS
RCLONE ?= rclone
RCLONE_ARGS ?= -v
================================================
FILE: docs/.orgconfig
================================================
# -*- mode:org -*-
# Copyright (C) 2021-2026 Jonas Bernoulli
# SPDX-License-Identifier: GPL-3.0-or-later
# URL: https://github.com/emacscollective/org-macros
# Visit that to see these macros in a human-readable format.
#+language: en
#+options: H:4 num:3 toc:2 compact-itemx:t
#+property: header-args :eval never
#+macro: year (eval (format-time-string "%Y"))
#+macro: version (eval (if-let ((tag (ignore-errors (car (process-lines "git" "describe" "--exact-match"))))) (concat "version " (substring tag 1)) (or (ignore-errors (car (process-lines "git" "describe"))) (concat "version " (or $1 "<unknown>")))))
#+macro: kbd (eval (format "@@texinfo:@kbd{@@%s@@texinfo:}@@" (let (case-fold-search) (replace-regexp-in-string (regexp-opt '("BS" "TAB" "RET" "ESC" "SPC" "DEL" "LFD" "DELETE" "SHIFT" "Ctrl" "Meta" "Alt" "Cmd" "Super" "UP" "LEFT" "RIGHT" "DOWN") 'words) "@@texinfo:@key{@@\\&@@texinfo:}@@" $1 t))))
#+macro: kbdvar (eval (format "@@texinfo:@kbd{@@%s@@texinfo:}@@" (let (case-fold-search) (replace-regexp-in-string "<\\([a-zA-Z-]+\\)>" "@@texinfo:@var{@@\\1@@texinfo:}@@" (replace-regexp-in-string (regexp-opt '("BS" "TAB" "RET" "ESC" "SPC" "DEL" "LFD" "DELETE" "SHIFT" "Ctrl" "Meta" "Alt" "Cmd" "Super" "UP" "LEFT" "RIGHT" "DOWN") 'words) "@@texinfo:@key{@@\\&@@texinfo:}@@" $1 t) t))))
#+macro: codevar (eval (format "@@texinfo:@code{@@%s@@texinfo:}@@" (let (case-fold-search) (replace-regexp-in-string "\\([A-Z][A-Z-]+\\)" "@@texinfo:@var{@@\\&@@texinfo:}@@" $1 t))))
#+macro: var @@texinfo:@var{@@$1@@texinfo:}@@
#+macro: dfn @@texinfo:@dfn{@@$1@@texinfo:}@@
================================================
FILE: docs/AUTHORS.md
================================================
The following people have contributed to Magit.
For statistics see https://stats.magit.vc/magit/authors.html.
Authors
-------
- Marius Vollmer
- Jonas Bernoulli
Active Maintainers
------------------
- Jonas Bernoulli
- Kyle Meyer
Former Maintainers
------------------
- Nicolas Dudebout
- Noam Postavsky
- Peter J. Weisberg
- Phil Jackson
- Rémi Vanicat
- Yann Hodique
All Contributors
----------------
- Aaron Culich
- Aaron L. Zeng
- Aaron Madlon-Kay
- Abdo Roig-Maranges
- Adam Benanti
- Adam Jones
- Adam Kruszewski
- Adam Porter
- Adam Spiers
- Adeodato Simó
- Ævar Arnfjörð Bjarmason
- Alan Falloon
- Alban Gruin
- Aleksey Uimanov
- Alexander Gramiak
- Alexander Miller
- Alex Branham
- Alex Dunn
- Alexey Voinov
- Alex Kost
- Alex Kreisher
- Alex Ott
- Allen Li
- Andreas Fuchs
- Andreas Liljeqvist
- Andreas Rottmann
- Andrei Chițu
- Andrew Eggenberger
- Andrew Kirkpatrick
- Andrew Psaltis
- Andrew Schwartzmeyer
- Andrew Zipperer
- Andrey Smirnov
- Andriy Kmit'
- Andy Sawyer
- Angel de Vicente
- Aria Edmonds
- Arialdo Martini
- Arnau Roig Ninerola
- Ashlynn Anderson
- Barak A. Pearlmutter
- Bar Magal
- Bart Bakker
- Basil L. Contovounesios
- Bastian Beischer
- Bastian Beranek
- Benjamin Motz
- Ben North
- Ben Walton
- Ben Zanin
- Bob Uhl
- Boruch Baum
- Bradley Wright
- Brandon W Maister
- Brennan Vincent
- Brian Leung
- Brian Warner
- Bryan Shell
- Buster Copley
- Cameron Chaparro
- Carl Lieberman
- Chillar Anand
- Chris Bernard
- Chris Done
- Chris LaRose
- Chris Moore
- Chris Ring
- Chris Shoemaker
- Christian Dietrich
- Christian Kluge
- Christian Tietze
- Christophe Junke
- Christopher Carlile
- Christopher Monsanto
- Clément Pit-Claudel
- Cornelius Mika
- Craig Andera
- Curt Brune
- Daanturo
- Dale Hagglund
- Damien Cassou
- Dan Davison
- Dan Erikson
- Daniel Brockman
- Daniel Farina
- Daniel Fleischer
- Daniel Gröber
- Daniel Hackney
- Daniel Kraus
- Daniel Mai
- Daniel Martín
- Daniel Mendler
- Daniel Nagy
- Dan Kessler
- Dan LaManna
- Danny Zhu
- Dato Simó
- David Abrahams
- David Ellison
- David Hull
- David L. Rager
- David Wallin
- Dean Kariniemi
- Dennis Paskorz
- Divye Kapoor
- Dominique Quatravaux
- Duianto Vebotci
- Eli Barzilay
- Ellis Kenyo
- Eric
- Eric Davis
- Eric Prud'hommeaux
- Eric Schulte
- Erik Anderson
- Eugene Mikhaylov
- Evan Torrie
- Evgkeni Sampelnikof
- Eyal Lotem
- Eyal Soha
- Fabian Wiget
- Felix Geller
- Felix Yan
- Feng Li
- Florian Ragwitz
- Franklin Delehelle
- Frédéric Giquel
- Fritz Grabo
- Fritz Stelzer
- gemmaro
- Geoff Shannon
- George Kadianakis
- Géza Herman
- Graham Clark
- Graham Dobbins
- Greg A. Woods
- Greg Lucas
- Gregory Heytings
- Greg Sexton
- Greg Steuck
- Guillaume Martres
- Hannu Koivisto
- Hans-Peter Deifel
- hokomo
- Huon Wilson
- Hussein Ait-Lahcen
- Ian Eure
- Ian Milligan
- Ilya Grigoriev
- Iñaki Arenaza
- Ingmar Sittl
- Ingo Lohmar
- Ioan-Adrian Ratiu
- Ivan Brennan
- Jacob Ilsø
- Jan Tatarik
- Jasper St. Pierre
- JD Smith
- Jean-Louis Giordano
- Jeff Bellegarde
- Jeff Dairiki
- Jeremy Meng
- Jeremy Sowden
- Jesse Alama
- Jim Blandy
- Joakim Jalap
- Johannes Altmanninger
- Johannes Maier
- Johann Klähn
- John Mastro
- John Morris
- John Wiegley
- Jonas Bernoulli
- Jonas Galvão Xavier
- Jonathan Arnett
- Jonathan del Strother
- Jonathan Leech-Pepin
- Jonathan Roes
- Jonathon McKitrick
- Jon Vanderwijk
- Jordan Galby
- Jordan Greenberg
- Jorge Israel Peña
- Josh Elsasser
- Josiah Schwab
- Julien Danjou
- Justin Burkett
- Justin Caratzas
- Justin Guenther
- Justin Thomas
- Kan-Ru Chen
- Kenny Ballou
- Keshav Kini
- Kevin Brubeck Unhammer
- Kevin J. Foley
- Kévin Le Gouguec
- Kimberly Wolk
- Knut Olav Bøhmer
- Kyle Meyer
- Laurent Laffont
- Laverne Schrock
- Leandro Facchinetti
- Lele Gaifax
- Lénaïc Huard
- Leo Liu
- Leonard Lausen
- Leonardo Etcheverry
- Leo Vivier
- Li Chen
- Lingchao Xin
- Lin Sun
- Li-Yun Chang
- Lluís Vilanova
- Loic Dachary
- Louis Roché
- Lucius Chen
- Luís Oliveira
- Luke Amdor
- Magnar Sveen
- Magnus Malm
- Mak Kolybabi
- Manuel Vázquez Acosta
- Marcel Wolf
- Marc Herbert
- Marcin Bachry
- Marco Craveiro
- Marco Wahl
- Marc Sherry
- Marian Schubert
- Mario Rodas
- Marius Vollmer
- Mark Hepburn
- Mark Karpov
- Mark Oteiza
- Markus Beppler
- Martin Joerg
- Martin Polden
- Matt Beshara
- Matthew Fluet
- Matthew Kraai
- Matthieu Hauglustaine
- Matus Goljer
- Maxim Cournoyer
- Michael Fogleman
- Michael Griffiths
- Michael Heerdegen
- Michal Sojka
- Miciah Masters
- Miles Bader
- Miloš Mošić
- Mitchel Humpherys
- Moritz Bunkus
- Nacho Barrientos
- Naoya Yamashita
- Natalie Weizenbaum
- Nguyễn Tuấn Anh
- Nic Ferier
- Nicholas Vollmer
- Nick Alcock
- Nick Alexander
- Nick Dimiduk
- Nicklas Lindgren
- Nicolas Dudebout
- Nicolas Petton
- Nicolas Richard
- Nikita Leshenko
- Nikolay Martynov
- Noam Postavsky
- N. Troy de Freitas
- Ola Nilsson
- Ole Arndt
- Oleh Krehel
- Orivej Desh
- Óscar Fuentes
- Pancho Horrillo
- Park Zhou
- Paul Pogonyshev
- Paul Stadig
- Pavel Holejsovsky
- Pekka Pessi
- Pengji Zhang
- Peter Eisentraut
- Peter Jaros
- Peter J. Weisberg
- Peter Vasil
- Philippe Cavalaria
- Philippe Vaucher
- Philipp Fehre
- Philipp Haselwarter
- Philipp Stephani
- Philip Weaver
- Phil Jackson
- Phil Sainty
- Pierre Neidhardt
- Pieter Praet
- Pieter van Oostrum
- Prathamesh Sonpatki
- Pratyush Yadav
- Pritam Baral
- rabio
- Radon Rosborough
- Rafael Laboissiere
- Rahul Rameshbabu
- Raimon Grau
- Ramkumar Ramachandra
- Remco van 't Veer
- Rémi Vanicat
- René Stadler
- Richard Kim
- Richard Sent
- Robert Boone
- Robert Irelan
- Robin Green
- Roey Darwish Dror
- Roger Crew
- Roland Marchand
- Romain Francoise
- Ron Parker
- Roy Crihfield
- Rüdiger Sonderfeld
- Russell Black
- Ryan C. Thompson
- Sam Cedarbaum
- Samuel Bronson
- Samuel W. Flint
- Sanjoy Das
- Sean Allred
- Sean Bryant
- Sean Farley
- Sean Whitton
- Sebastian Wiesner
- Sébastien Gross
- Seong-Kook Shin
- Sergey Pashinin
- Sergey Vinokurov
- Servilio Afre Puentes
- shoefone
- Shuguang Sun
- Siavash Askari Nasr
- Silent Sphere
- Simon Pintarelli
- Stefan Kangas
- Štěpán Němec
- Steven Chow
- Steven E. Harris
- Steven Thomas
- Steven Vancoillie
- Steve Purcell
- StrawberryTea
- Suhail Shergill
- Sylvain Rousseau
- Syohei Yoshida
- Szunti
- Takafumi Arakaki
- Tassilo Horn
- TEC
- Teemu Likonen
- Teruki Shigitani
- Thierry Volpiatto
- Thomas A Caswell
- Thomas Fini Hansen
- Thomas Frössman
- Thomas Jost
- Thomas Riccardi
- Tibor Simko
- Timo Juhani Lindfors
- Tim Perkins
- Tim Wraight
- Ting-Yu Lin
- Tom Feist
- Toon Claes
- Topi Miettinen
- Troy Hinckley
- Tsuyoshi Kitamoto
- Tunc Uzlu
- Ulrich Müller
- Vineet Naik
- Vitaly Ostashov
- Vladimir Ivanov
- Vladimir Panteleev
- Vladimir Sedach
- Waqar Hameed
- Wei Huang
- Wilfred Hughes
- Win Treese
- Wojciech Siewierski
- Wouter Bolsterlee
- X4lldux
- Xavier Noria
- Xavier Young
- Xu Chunyang
- Yann Herklotz
- Yann Hodique
- Ynilu
- York Zhao
- Yuichi Higashi
- Yuri Khan
- Zach Latta
- zakora
- Zhu Zihao
- ziggy
- zilongshanren
================================================
FILE: docs/BACKERS.md
================================================
Thanks to your contributions and enthusiastic support
the Magit [crowdfunding campaign][1] was a huge success!
A special thanks goes to [Mojotech][2], [Directangular][3] and
[Google Open Source][4] for their very generous contributions.
[1]: https://www.kickstarter.com/projects/1681258897/its-magit-the-magical-git-client
[2]: https://www.mojotech.com
[3]: https://www.directangular.com
[4]: https://opensource.google.com
I would also like to thank each one of the almost two thousand
other backers. It was very motivating to learn that so many users
care that much about Magit and the well-being of its maintainer.
Thanks!
Jonas Bernoulli
------------------------------------------------------------
These are some of the 1987 backers:
(If you backed the campaign and would like to be mentioned
here but are not, then please fill out the backer survey.)
- 4xrsJCr9
- <3
- @amirrajan
- @arthurnn
- @nietaki
- @seriousben
- A.I.
- A.Weiher
- Aaditya Sood
- Aaron Jacobs
- Aaron Lee
- Aaron Madlon-Kay
- Aaron Mathews
- Aaron Schumacher
- Abdullah Alleweeth
- Abhijit Rao
- Abrahán Fernández Nieto
- Ada
- Adam Benzan
- Adam Bobrow
- Adam Collard
- Adam Olsen
- Adam Patterson
- Adam Shannon
- Adam Sjøgren
- Adriaan Leijnse
- Adrian Bradd
- Al Scott
- Alan Pavičić
- Alan Pearce
- Alan Shutko
- Alastair Rankine
- Alberto Donato
- Aleix Conchillo Flaque
- Aleksandar Simić
- Aleksandr Ivanov
- Aleksei Fedotov
- Alex Bennée
- Alex Branham
- Alex Dempsey
- Alex Ermolov
- Alex Murray
- Alex Reinhart
- Alex Schroeder
- Alex Speed Kjeldsen
- Alex Wiles
- Alex ter Weele
- Alexander Berezovsky
- Alexander Goldstein
- Alexander Lamaison
- Alexander Simms
- Alexander Stankov
- Alexandre Bertails
- Alexandre Duret-Lutz
- Alexandre Héaumé
- Alexandre Julliard
- Alexey Egorov
- Alexey Kapustin
- Alexis Marie Wright
- Aleš Bizjak
- Alfredo Aguirre
- Allen Short
- Amin Bandali
- Anatolii Smolianinov
- Anatolij Prihosko
- Anatoly Kudinov
- Andre Aberer
- Andrea Crotti
- Andrea Di Persio
- Andreas Aronsson
- Andreas J
- Andreas Marschke
- Andreas Textor
- Andreas Vollert
- Andreas Zweili
- Andrej Depperschmidt
- Andres Mariscal
- Andrew C May
- Andrew Childs
- Andrew Cowper
- Andrew Cox
- Andrew Evans
- Andrew Fray
- Andrew Grytsenko
- Andrew J Cosgriff
- Andrew Macgregor
- Andrew McDermott
- Andrew Mullins
- Andrew Sanchez
- Andrew Schwartzmeyer
- Andrew Shugarts
- Andrew Slough
- Andrew Sullivan
- Andrew Talbot
- Andrew Tropin
- Andrew Watts
- Andrzej Skiba
- András Simonyi
- Andy Bold
- Andy Drop
- Andy Moreland
- Anntoin
- Anonymous
- Anselm Lingnau
- Anthony Cowley
- Anthony Hobbs
- Anticrisis
- Anton Orlov
- Antoni Batchelli
- Antonio Miranda
- Aran Cox
- Arjen Wiersma
- Arjun
- Arnaud Meuret
- Arne Brasseur
- Arne Redlich
- Arong Pan
- Arthur A. Gleckler
- Arthur Leonard Andersen
- Artur Malabarba
- Artyom Kazak
- Ash
- Asherah
- Asilata Bapat
- Audun Gevelt
- August Lilleaas
- Axie Infinity
- Azundris
- Baishampayan Ghose
- Balaji Sivaraman
- Baldur
- Barak
- Barry Gitarts
- Barry McLarnon
- Bas Alberts
- Bascht
- Ben Hollis
- Ben Leggett
- Ben Plantinga
- Ben Swift
- Benaiah Mischenko
- Benedek Fazekas
- Benedikt Terhechte
- Beni Cherniavsky-Paskin
- Benjamin Beckwith
- Benjamin Hipple
- Benjamin Klüglein
- Benjamin Kudria
- Benjamin Ragheb
- Benjamin Savs
- Benoit Daffos
- Biao Xie
- Bill Stilwell
- Bjarke Vad
- Björn Larsson
- Bob Duke
- Bob Sun
- Bob Uhl
- Bobby Burden III
- Bodil Stokke
- Boris Dušek
- Boyd Adamson
- Bozhidar Batsov
- Brandon Adams
- Brandon Belew
- Brandon Dixon
- Brandon Fulk
- Brandon Orther
- Brendan Fahy
- Brendan Jackman
- Brendan Kirby
- Brett Witty
- Brian Brunswick
- Brian Carlson
- Brian Cobb
- Brian Danilko <brian@likeablesoftware.com>
- Brian Gruber
- Brian Hicks
- Brian James Rubinton
- Brian Leonard
- Brian Sniffen
- Brian Warner
- Bridger Howell
- Brooke Mitchell
- Bruce Ravel
- Bruno Jacquet
- Bryan Gilbert
- Bryan Willson Berry
- Bryce Kerley
- Cai Kechao
- Caibin Chen
- Caleb McCaffery
- Calogero Lo Leggio
- Cameron Higby-Naquin
- Cameron Stitt
- Carl Lange
- Carlo Sciolla
- Carlos Antonio Neira Bustos
- Carlos Rocha
- Carsten Strotmann
- Carsten.Koenig@hotmail.de
- Caspar
- Cena Mayo
- Chad Stovern
- Chaitanya Koparkar
- Chandan Rajendra
- Chao Liu from GRASP Lab, UPenn
- Charl P. Botha
- Charles L.G. Comstock
- Charlie Brodie
- Charlie McMackin
- Chas B.
- Chase Wang
- Chen Rotem Levy
- Chris Charles
- Chris Douty
- Chris Gray
- Chris Hanson
- Chris Johnson Bidler
- Chris Lample
- Chris Lindholm
- Chris Mann
- Chris McDevitt
- Chris McGrath
- Chris Nyland
- Chris R (offby1@)
- Chris Sims
- Chris Taylor
- Christian 'gicmo' Kellner
- Christian Berg
- Christian Johansen
- Christian Johansson
- Christian Lenke
- Christian Romney
- Christian Zang
- Christine und Arne Köhn
- Christoffer Schultz Jensen
- Christoph Egger
- Christoph Lange
- Christoph Paa
- Christophe Garion
- Christophe Junke
- Christophe Troestler
- Christophe Vu-Brugier
- Christopher Adams
- Christopher Genovese
- Christopher Giroir
- Christopher Jenkins
- Christopher Jordan
- Christopher M. Becker
- Cicero Jones
- Clay Haapala
- Cliff Wulfman
- Clément Pit-Claudel
- Cody Canning
- Colin McLear
- Colin P. D. Powell
- Constantine Khrulev
- Correl Roush
- Courtland Jones
- Craig Andera
- Craig Hawco
- Curt Brune
- D. Sere
- Damian Dobroczynski
- Damien G.
- Damien Merenne
- Damien Pollet
- Dan Davison
- Dan Forest
- Dan Harms
- Dan Jones
- Dan LaManna
- Dan Torop
- Danger Salad
- Daniel
- Daniel Bowman
- Daniel Caixinha
- Daniel Cowgill
- Daniel Gempesaw
- Daniel Grady
- Daniel J. Rothblatt
- Daniel Kraus
- Daniel Luna
- Daniel Ma
- Daniel Mai
- Daniel Martín
- Daniel Molina
- Daniel Moore (drmrd)
- Daniel S. F. Alves
- Daniel Skarda
- Daniel Tamai
- Daniel V
- Daniel de Haas
- Daniël de Kok
- Darren Aldredge
- Darryl Okahata
- Dave Aitken
- Dave Churchill
- Dave Kochbeck
- Dave Liepmann
- Dave Pearson
- Dave Pretty
- Dave Rolsky
- David Arnold
- David Berg Marklund
- David Duncan
- David Ellison
- David Goldfarb
- David Hodges
- David Hull
- David Krauser
- David Leimbach
- David Mayfield
- David Pathakjee
- David Radkowski
- David Robillard
- David S. Rosenberg
- David Scarpetti
- David Stone
- David Vázquez
- David Wen Riccardi-Zhu
- David Zuber
- Davidbrcz
- Davide Restivo
- Dean Sellis
- Deepu Mohan Puthrote
- Denis Haine
- Derek Chen-Becker
- Derek Scherger
- Derek Slager
- Derek Upham
- Devin
- Diane Trout
- DictatorBob
- Diego Vicente Martín
- Dieter Komendera
- Diez Roggisch
- Difrex
- Dimitre Liotev
- Dimitris Platis
- Dirk Breuer
- Divan Santana
- Dmitry Alexeev
- Dmitry Dzema
- Dmitry Lazurkin
- Dmitry Polyanitsa
- Dmitry Tymchuk
- Dominique Dumont
- Don Spencer
- DonBørn
- Doru Mihai Leonte
- Doug MacEachern
- Dr. Jobo
- Drew Raines
- Durant Schoon
- Dustin Maas
- Dustin Paluch
- Dylan Fitzgerald
- Dylan Moore
- Eddie Hillenbrand
- Eduardo Apolinario
- Eduardo Ruiz Macias
- Edward Faulkner
- Edward Knyshov
- Edward Steere
- Edwin Stearns
- Elaina Martineau
- Eli Naeher
- Elias Castegren
- Elis ""etu"" Hirwing
- Elsa Gonsiorowski
- Emanuel Tannert
- Emil Bergström
- Emil Klarskov
- Emil Lundmark
- Emilio y Marcelo
- Emre Sevinç
- Eric B. Decker
- Eric Brown
- Eric E. Moore
- Eric Hogberg
- Eric Hopkins
- Eric Seidel
- Erik Anderson
- Erik Edrosa
- Erik Nordlund
- Erik Pischel
- Erik Swanson
- Erik W. B.
- Erik Winkels
- Erkki Seppälä
- Erwin Junge
- Esben Sparre Andreasen
- Ethan Feldman
- Ethan Glasser-Camp
- Ettore Berardi
- Eugene Rwagasore
- Eugene Tan
- Evan Rowley
- Evgeniy Tyurkin
- Ewan Dawson
- Ezekiel Elin
- Fabian
- Fabian Otto
- Felipe M.
- Felix Panozzo
- Fernando Dobladez
- Fernando Varesi
- Fitz Elliott
- Flavien COGEZ
- Florian Adamsky
- Florian Bruhin (The Compiler)
- Florian Kempenich
- Florian Schmaus
- Florian Stock
- Florian Ulivi
- Foivos Zakkak
- Foxtur
- Fran Burstall
- Francesc Elies
- Francesc Rocher
- Frank Roland
- František Haifler
- François Morlet
- Fred Akalin
- Fred Boiteux
- Fred Kroon
- Frederic Dumont
- Frederik Banis
- Frederik Beaujean
- Fritz Grabo
- Frontside Software
- Fumitaka Tokumitsu
- Gabriel Adomnicai
- Gabriel J. Pérez Irizarry
- Gaby Launay
- Galder Zamarreño
- Galin Yordanov
- Garvin Guan
- Gary Trakhman
- Gavin Mercer
- Geoff MacIntosh
- Geoff Pado
- Geoff Wozniak
- Geoffrey J. Teale
- George Pittarelli
- Gerard Paapu
- Gerard Ryan
- Gergely Nagy
- Gergely Polonkai
- Giang-Son Nguyen
- Giorgos Logiotatidis
- Giovanni Azua
- Gitty McGitface
- Gitty McGitface
- Glenn R. Martin
- Gordon Freeman
- Gordon Gustafson
- Greece <3 magit
- Greg Chevalley
- Greg Leppert
- Gregg Hernandez
- Guido Schmidt
- Guilhem Doulcier
- Guillaume Ayoub
- Guillaume Marceau
- Guillermo Ramos
- GuiltyDolphin
- Gustav Wikström
- Gwenhael Le Moine
- Harald Hvaal
- Hector Castro
- Henri Jones
- Henrik Ahlgren
- Henrik Kjerringvåg
- Henrik Renlund
- Henry Laxen
- Henry Robinson
- Henry Walshaw
- Hertz
- Herwig Stuetz
- Hiren Shah
- Hiroki Kiyohara
- Hiroshi Tsutsui
- Hoel
- Holger Dürer
- Horst Gutmann
- Hung Pham
- Hynek Schlawack
- Håkan Nilsson
- Ian Johnson
- Ian Kerins
- Ian McCowan
- Ian Warford
- Ibrahim Awwal
- Icarus Sparry
- Igor Bronshteyn
- Igor Kupczyński
- Ikuru K
- Ilja Kocken
- Illia Shestakov
- Ingar Almklov
- Ionov Valentine
- Isaac Karth
- Israel Herraiz
- Itamar Ravid
- Itamar Turner-Trauring
- Iulian Costan
- Ivan Kanis
- Ivan Timokhin
- Ivo Reyes Román
- J Alexander Feldman-Crough
- Jacek Generowicz
- Jack Angers
- Jack Kelly
- Jack Letourneau
- Jack Moffitt
- Jack Nai-Chieh Chou
- Jack Wong
- Jacob Covington
- Jacob Ilsø Christensen
- Jacob Moeller
- Jacob O'Donnell
- Jaga Santagostino
- Jaidev Sridhar
- Jake McCrary
- Jakub Chmielarz
- Jakub Narębski
- James Felix Black
- James Ferguson
- James Orr
- James Sharman
- James Tranovich
- James Valleroy
- Jamie McClymont
- Jamie Nicol
- Jan Mas Rovira
- Jan Rychter
- Jan Seeger
- Jan Vincent Liwanag
- Jangseop Shin
- Jared Miller
- Jarno Malmari
- Jarrett P
- Jason Blevins
- Jason Orendorff
- Jasper Spaans
- Jeff Bauer
- Jeff McCarrell
- Jeff Tecca
- Jeff Waltzer
- Jeff Whitmire
- Jeff Workman
- Jeffrey I. Schiller
- Jeffrey Panczyk
- Jennifer Kowalsky
- Jens-Peter Thiry
- Jeremiah Peschka
- Jeremy Burks
- Jeremy Huffman
- Jeroen AH
- Jeroen Faijdherbe
- Jeroen Tiebout
- Jessica Claire Edwards
- Jethro Kuan
- Jiashu Wang
- Jim Blandy
- Jim Menard
- Jingcheng Xu
- Jiten K. Pathy
- Joachim 'Troglobit' Nilsson
- Joakim Ohlrogge
- Joakim Verona
- Joao Azevedo
- Joe Balancio
- Joe DeVivo
- Joe Gallo
- Joe Kiniry
- Joerg Jaspert (Ganneff)
- Johan Bay
- Johan Ekenberg
- Johan Forsberg
- Johan K. Jensen
- Johan S.
- Johan Sandblom
- Johan Sternerup
- Johannes 'ksjogo' Goslar
- Johannes Beigel
- Johannes Grødem
- Johannes Rainer
- Johannes W.
- John Anthony
- John Cinnamond
- John D. Hume
- John Giannelos
- John Haman
- John Krumpotick
- John Mastro
- John Peloquin
- John Urquhart Ferguson
- Johnny Chadda
- Jojo
- Jon Irving
- Jon M. Dugan
- Jon Raphaelson
- Jon Snader
- Jonas Ransjö
- Jonas Serych
- Jonas Strømsodd
- Jonathan Arnett (J3RN)
- Jonathan Lai
- Jonathan Miller
- Jonathan Rothberg
- Jonathan del Strother
- Joonas Sarajärvi
- Joost Diepenmaat
- Jordan Galby
- Jordan Mulcahey
- Jordon Biondo
- Joren Van Onder
- Jorge Dias
- Jorge Santiago
- Jos
- Josep Egea
- Joseph Churchill
- Joseph Garvin
- Joseph Jaoudi
- Joseph Mingrone
- Josh Berry
- Josh Comer
- Josh Elsasser
- Josh Lipschultz
- Josh Medeski
- Josh Mōller-Mara
- Josh Skidmore
- Josh Tilles
- Josh Valentine
- Joshua B. Smith
- Joshua E Cook
- Joshua F. McMichael
- Josiah Schwab
- Jostein Kjønigsen
- Jouni K. Seppänen
- Joël Franusic
- Juan E. Maya
- Juan Edi
- Juan Pedro Bolívar Puente (https://sinusoid.al)
- Julian Kniephoff
- Julien Blanchard
- Julio Borja Barra
- Justin Guenther
- Justin Kaipada
- Justin Schell
- Justin Smestad
- Justin Talbott
- Justin Wood
- Justine Tunney
- Jörg Ramb
- Jürgen Hackl
- Kaloian Doganov
- Kamen Naydenov
- Kamil & Hassan
- Kara Woo
- Karl Voit
- Karthikeyan S
- Katherine Lai
- Kaushal Modi
- Kaushik Chakraborty (kaychaks)
- Kavita Varsani
- Kazushige Hosokawa
- Kazuya Sakakihara
- Keiichi Watanabe
- Keith Amidon
- Keith Mantell
- Kelly McLaughlin
- Ken Olstad
- Kent Primrose
- Kevin Christen
- Kevin D Saunders
- Kevin Grimes, II
- Kevin J Foley
- Kevin Kelley
- Kevin Orr
- Khan Thompson
- Kieran Healy
- Kieran Trezona-le Comte
- Kim Frederiksen
- Kim Gräsman
- Kiran Kulkarni
- Klāvs Taube
- Konrad Voelkel
- Koray Al
- Kostiantyn Rybnikov
- Kridsada Thanabulpong
- Krista Victorsen
- Kristoffer
- Kungsgeten
- Kushal Pisavadia
- Kyle Brooks
- Kyle Machulis (qDot)
- Kyle Oba
- Kyle Purdon
- Kyle Schwab
- Kyle Sexton
- Kévin Le Gouguec
- Lardière Sébastien
- Lars Hesel Christensen
- Laurence Rochfort
- Laurent Charignon
- Laurent Gatto
- Leandro Cardoso
- Lefteris Karapetsas
- LegoNigel
- Leo Breebaart
- Leo C. Stein
- Leo Martel
- Leron Culbreath
- Les Jones
- Levi I. Tan Ong
- Liam Stewart
- Luca Manzoni
- Lucas Meyers
- Lucian Mogosanu
- Ludwig PACIFICI
- Luis Miguel Castañeda
- Luis Osa
- Luke Amdor
- Luke Francl
- Lute Kamstra
- Luís Oliveira
- Léo Gillot-Lamure
- M. Ian Graham
- Maarten Grachten
- Maciek Swiech, PhD
- Magit is full of magic!
- Magnar Sveen
- Magnus Malm
- Magnus Nyberg (nxtr)
- Mahinshaw@gmail.com
- Mak Kolybabi
- Maksym Planeta
- Man Roy
- Mandy
- Manfred Kroehnert
- Manish Sharma
- Mansur Ziatdinov
- Manuel Alonso
- Manuel Frischknecht
- Manuel Kallenbach
- Manuel Uberti
- Marc Massar
- Marc Nijdam
- Marc Sherry
- Marc T. Henry de Frahan
- Marcel Bollmann
- Marcello Nicoletti
- Marcin Cieślak
- Marcin Swieczkowski
- Marco Dalla Stella
- Marco Wahl
- Marcus Geiger
- Marcus Klemm
- Marcus Puchalla
- Mark A. Hershberger
- Mark Faldborg
- Mark Hepburn
- Mark Jeffcoat
- Mark Meredith
- Mark Ranallo
- Mark Schaake
- Mark Stradling
- Mark Tran
- Mark Triggs
- Markus Fix
- Marshall Quander
- Mart van de Wege
- Marten Lienen
- Marti Bolivar
- Martin Buchmann
- Martin Frost
- Martin Geisler
- Martin Huschenbett
- Martin Luethi
- Martin Mauch
- Martin Myrseth
- Martin Polak
- Martin Rechsteiner
- Martin Yrjölä
- Martin Šlouf
- Martino Visintin
- Martins Grunskis
- Mary Jo Brodzik
- Masayuki Onjo
- Mateusz Probachta (beetleman)
- Mathew Robinson
- Mathieu Corbin
- Mathieu Tartare
- Matija Zezelj
- Matt Curtis
- Matt Haffner
- Matt Kramer
- Matt Savoie
- Matt Usifer
- Matthew Bregg
- Matthew Curry
- Matthew Fluet
- Matthew Gregg
- Matthew Hitchman
- Matthew Piziak
- Matthew Plant
- Matthew Wells
- Matthias Güdemann
- Matthias Nüßler
- Matti Niemenmaa
- Mattias Bengtsson
- Matías Aguirre
- Mauricio Aldazosa Mariaca
- Mauricio Collares
- Max B. Hansson
- Max Diefenbach
- Max Regan
- Max Tweddell
- Max Willsey
- Maxim Ivanov
- Maxim Rurenko
- Mayank Jain
- Meiyo Peng <meiyo.peng@gmail.com>
- Melioratus
- Menno Finlay-Smits
- Micah Anderson
- Michael Abrahams
- Michael Droettboom
- Michael Engelhardt
- Michael Gracie
- Michael Griffiths
- Michael Hansen
- Michael Kleehammer
- Michael Krasnyk
- Michael McCracken
- Michael Moreno
- Michael Overmeyer
- Michael Sloan
- Michael Welsh Duggan
- Michal Buczko
- Michał Politowski
- Mickaël Salihi
- Miguel Fernandes
- Mihai Rinzis
- Mikael Kermorgant
- Mikael Springer
- Mike Ashley
- Mike Crowe
- Mike Danylchuk
- Mike Gulick
- Mike Hewitson
- Mike Monette
- Mike T. Miller
- Mike Travers
- Mike Wagg
- Mike Zamansky
- Mikhail Pankov
- Mikhail Pontus
- Mikko Värri
- Miks Kalnins (MaikuMori)
- Milan Zamazal
- Miles Clark
- Miloš Mošić
- Mingwei Zhang
- Miranda Dobbs
- Mirzhan Irkegulov
- Mitchell A. Gordon
- Mitchell Bright
- Mitsutaka Takeda
- Mohammed Ismail Ansari (myTerminal)
- Moiz Bookwala
- Moritz Bunkus
- Morten Slot Kristensen
- Mr. Wacky
- Mrinal Purohit
- Murilo Pereira
- Murphy McMahon
- Nab Inno
- Nat Knight
- Nate Eagleson
- Nathan Collins
- Nathan Hitchings
- Nathan Sain
- Naupaka Zimmerman
- Neil Baylis
- Neil Durant
- Neurolit
- Niall Dooley (doolio)
- Nick Alcock
- Nick Fitzgerald
- Nick Higham
- Nick Spain
- Nicolas Dudebout
- Nicolas Ha
- Nicolas Hafner
- Nicolas Morey-Chaisemartin
- Nicolò Balzarotti
- Niels Widger
- Nikita Dudnik
- Nikita Leshenko
- Nikk Folts
- Niko Felger
- Nikolai Nespor
- Nikos Fertakis
- Nils
- Nils Grunwald
- Nils Pascal Illenseer
- Niluge_KiWi
- Nishioka Wataru
- Nishiyama Nobuyuki
- Noah Hoffman
- Noel Markham
- Norbert Kiesel
- Norman Walsh
- Norman Yamada
- Ola Nilsson
- Ole Jørgen Brønner
- Ole petter Orhagen
- Oleg Ivanov
- Oleg Kostyuchenko
- Oleg Matrokhin
- Oliver Caldwell
- Oliver Eidel
- Oliver Holworthy
- Oliver Marks
- Oliver Reiter
- Olivier Berger
- Olivier Tharan
- Olivier Yiptong
- Ollie Charles (ocharles)
- Onorio Catenacci
- P. Kunze
- Paolo G. Giarrusso
- Pasi Heikkinen
- Patrick Brown
- Patrick Chung
- Patrick Haun
- Patrick Kelley
- Patrick Nguyen
- Patrick Thomson
- Paul Hankes Drielsma
- Paul Healy
- Paul Kalupnieks
- Paul Oliver
- Paul R. Jorgensen
- Paul Reiter
- Paul Young
- Pavel Khlopin
- Pavel Panchekha
- Pawan Dubey
- Paweł Damasiewicz
- Paweł Kapała
- Pedro Pinto
- Pedro Romano
- Per Bergqwist
- Peter Borocz
- Peter Brachwitz
- Peter Buckley
- Peter C. Norton
- Peter Cheng
- Peter Christensen
- Peter Perron
- Peter Vasil
- Phil Austin
- Phil Dixon
- Phil Sung
- Philip Sequeira
- Philip Tran
- Philipp Baschke
- Philipp Klippel
- Philippe Bernery
- Philippe Cavalaria
- Philippe Vaucher
- Pierre Lrz
- Pierre Neidhardt
- Praveen Perera
- Radon Rosborough
- Rafal Kowalski
- Ramanathan Sivagurunathan
- Rami Massoud
- Rami Ylimäki
- Raniere Silva
- Rasmus Rygaard
- Ray Hixson
- Remco
- Remote Viewer
- Renat Galimov
- Renato Aguiar
- Rey Wright
- Rhys Powell
- Riccardo Cambiassi
- Richard Bonichon
- Richard Murri
- Richard Petri
- Richard Thames
- Rickard Sundin
- Riverprawn
- Rob Donnelly
- Robert Boone
- Robert Helgesson
- Robert Postill
- Robert Steward
- Robert Stuttaford
- Robin Neatherway
- Rodrigo
- Roland Reckel
- Romain Deterre
- Roman Kashitsyn
- Romario López
- Ron Lusk
- Ronan Barzic
- Rory Gibson
- Rory Molinari
- Ross Donaldson
- Ross Lonstein
- Rouven Czerwinski
- Royall Spence
- Ruben Bakker
- Ruben Maher
- Rupert Swarbrick
- Russell Healy
- Rutger Prins
- Ruud
- Ryan C. Thompson
- Ryan Eschinger
- Ryan Kaskel
- Ryan Mulligan
- Ryan Prior
- Ryan Seals
- Ryan Shaw
- Rémi Vanicat
- Rörd Hinrichsen
- Rúnar Berg Baugsson Sigríðarson
- SM
- SabreWolfy
- Sagun Khatri
- Saint Aardvark the Carpeted
- Sajith Sasidharan
- Sam Bleckley
- Sam Blumenthal
- Sam Brightman
- Sam Halliday
- Sam Pillsworth
- Samuel Cole
- Samuel Evans-Powell
- Samuel Tonini
- Sangho Na
- Santi de Ledesma
- Saul Reynolds-Haertle
- Sayash K
- Scott Barron
- Scott Determan
- Scott Dubinsky
- Scott Jacobsen
- Scott Ross
- Sean Allred
- Sean Andrews
- Sean Bowman
- Sean Grove (@sgrove)
- Sean J Williamson
- Sean McAfee
- Sean Patrick Hagen
- Sean Smith
- Seb Kri
- Sebastian Nørgaard
- Sebastian Schlag
- Sergey Kostrukov
- Sergey Timanin
- Shane Celis
- Shaun Lee
- Shigenobu Nishikawa
- Shingo Fukuyama
- Shmulik Regev
- Shreyas Ragavan
- Shubhang Mani
- ShuffelBag
- Shun Yu
- Simon Altschuler
- Simon Benfold
- Simon Brown
- Simon Fenton
- Simon Gregersen
- Simon Génier
- Simon Law
- Sir Garbagetruck
- Skip
- Slava Barinov
- Sliim
- Spruce Bondera
- Stefan Arentz
- Steffen Weinreich
- Stelian Ionescu
- Stephan Schmitt
- Stephan Schubert
- Stephen C. Gilardi
- Stephen Childs
- Stephen Pegoraro
- Stephen Whipple
- Stephen York
- Steven Rémot
- Stian Eikeland
- Stig Brautaset
- StupidCodeFactory
- Stéfan van der Walt
- Sumit J
- Superbil
- Sven Koschnicke
- Sven Rubben
- Sverre Johansen
- Swaroop C H
- Sylvain Rousseau
- Szabolcs Szilágyi
- Sébastien André
- Søren Lund
- Taavi Tani
- Takaaki Ishikawa
- Takeshi Teshima
- Tamas K. Papp
- Tarjei Bærland
- Tassilo Horn
- Taylor Skidmore
- TeMPOraL
- Terje Sten Bjerkseth
- Tero Paloheimo
- The Mad Hatter
- Thomas A Caswell
- Thomas Felber
- Thomas Gazagnaire
- Thomas Hisch
- Thomas Moulia
- Thomas Skardal
- Thommy H.
- Thor Adam
- Tiago Luchini
- Tianxiang Xiong
- Tibor Csögör
- Tilmann Singer
- Tim Howes
- Tim Johns
- Tim Perkins (@tprk77)
- Tim Scheer
- Tim Zallin
- Ting-Yu Lin
- Titus von der Malsburg
- Tjaart van der Walt
- Tobias Fankhänel
- Tom Lyons (tbl3rd)
- Tom Ridge
- Tom Talbot
- Tom W.
- Tom van der Sommen
- Tomasz Legutko
- Tomás Solar Castro
- Tony Finch
- Tony Kemp
- Toon Claes
- Topher Brown
- Tore Brede
- Travis B. Hartwell
- Travis Luckenbaugh
- Travis Poulsen
- Tresi Arvizo
- Trevoke
- Trevor Spiteri
- Tritlo
- Troy Hinckley
- Tuomas Kareinen
- Tushar Tyagi
- Tyler Romeo
- Tyler Sellon
- USAMI Kenta (tadsan, zonuexe)
- Umar Arshad
- Vaibhav Jain
- Valtteri
- Varun Madiath
- Vedang Manerikar
- Venkateswara Rao Mandela
- Victor Arias
- Victor Shulyak
- Victory Ejevika
- Vincent Demeester
- Vincent Pomageot
- Vindaar
- Vitor Capela
- Vivek Das Mohapatra
- Vlad
- Vlad Buslov
- Vladimir Shemankov
- Volker Haas
- Václav Haisman
- Wei Tang
- Wei-ju Wu
- Wendel Scardua
- Wes Hardaker
- Wilfred Hughes
- Will Fleming
- Will Hughes
- Will Newton
- Will Roe
- Willi Ballenthin
- William Casarin
- William Henney
- William Oberndorfer
- Willy Lee
- Willy Rempel
- Wolfgang Stief
- Xi Omicron Sigma
- Xi Shen
- Xuan Bi
- Yanko Simeonov - Zecho
- Yasushi SHOJI (""yashi"")
- Yen, Tzu-Hsi
- Yolanda Cadalbert
- YoungFrog
- Yu Miura
- Yuquan Fu
- Yuri Albuquerque
- Yuri Bronshtein
- Yuri Khan
- Yuta Yamada
- Yuuki Harano
- Zach Ingbretsen
- Zach Kost-Smith
- Zachary Kim
- Zachary Stevens
- ZaharK
- Zev Blut
- Zhiming Wang
- Zotan
- Zsolt Botykai
- agzam.ibragimov@gmail.com
- alex@olkhovskiy.com
- anderspree
- andrew.smirnov@gmail.com
- andron94
- aneesh.kumar@gmail.com
- apeyroux
- baby-gnu.org
- bigjust
- bmac
- brandon.eltiste@gmail.com
- bsdmatburt@gmail.com
- bzg
- cbbrowne
- cfuhrman@gmail.com
- chpeer
- cmacrae
- cms
- comandante345
- danmilon
- db48x
- designernasser@gmail.com
- dgoeke@gmail.com
- djeis
- dlowe
- dom.parry@gmail.com
- elseorand
- empty
- enderozcan
- frank.patz@gmail.com
- frankyxhl
- gabriele.lana@gmail.com
- gaetano
- gdcosta@gmail.com
- genehack
- george.l
- gingeralesy
- gmasgras@gmail.com
- goosetherumfoodle
- greetings_from_italy
- gregory@brusick.ch
- gsnewmark
- haff
- hensansi
- hugurp
- ilitzroth@gmail.com
- iwan
- jakobj
- jao
- jarvisschultz
- joesmoe10@gmail.com
- jonas.bulow@gmail.com
- jonasac
- joranvar
- jvshahid
- jward
- jwerak
- k-sunako
- kalle.lindqvist@mykolab.com
- karate expert
- karronoli
- kenneth@geisshirt.dk
- kiwanami
- kltm
- krvkir
- l26wangca@gmail.com
- laduke
- lambdageek
- lischenko
- lobachevsky
- luke@balooga.com
- mail.urfi@gmail.com
- manojm.321@gmail.com
- marco 'rho lambda pi' rolappe
- mats manet
- mds2
- mgdelacroix
- miguelgr
- milan.v.mitrovic@gmail.com
- mr.adtaylor@gmail.com
- n2o
- netWorms
- nick.lanham.nexus@gmail.com
- ninesigns
- nivekuil
- noonker
- nyyManni
- ojab
- oppenlander
- pancho horrillo
- paralin
- patrickwinter@posteo.ch
- pcmantz@mcpantz.org
- pepone.onrez@gmail.com
- peter ""git push -f"" aaser
- pitometsu
- rafael@micubiculo.com
- rails-to-cosmos
- ray keung
- rdomigan
- realloc()
- roomkey.com
- rouadec
- runejuhl
- sbaker617
- shapr
- shino
- simon.leinen@gmail.com
- snowball
- sponrad
- stask
- steffen@g7n.dk
- taku0
- tanzoniteblack
- thirteen37
- thomas.stenhaug@gmail.com
- thomasf@jossystem.se
- toby cabot
- tomterl
- trobanga
- trocster
- turnspike.com
- tuxtimo
- tzz@lifelogs.com
- umejam
- vaartis
- vargonaut
- vincenzo.disomma@gmail.com
- wtp
- www.drinkiwiki.com
- yewton
- yoshinori kawahara
- zerth
- Álvaro González Sotillo
- Åsmund Grammeltvedt
- Étienne BERSAC
- Étienne Deparis
- Ömer Yildiz
- Łukasz Korecki
================================================
FILE: docs/Makefile
================================================
-include ../config.mk
include ../default.mk
.PHONY: install clean AUTHORS.md stats
## Build #############################################################
docs: texi info html html-dir pdf
texi: $(TEXIPAGES)
info: $(INFOPAGES) dir
html: $(HTMLFILES)
html-dir: $(HTMLTOPS)
pdf: $(PDFFILES)
epub: $(EPUBFILES)
ORG_EVAL += --load ol-man --eval "(progn $$ORG_MAN_EXPORT)"
ORG_EVAL += --eval "(setq indent-tabs-mode nil)"
ORG_EVAL += --eval "(setq org-src-preserve-indentation nil)"
ORG_EVAL += --eval "\
(defun org-texinfo--sanitize-content (text)\
(replace-regexp-in-string \"[@@{}]\" \"@@\\&\" text))"
ORG_EVAL += --funcall org-texinfo-export-to-texinfo
redo-docs:
@touch $(ORGPAGES)
@make docs
.revdesc: ;
_ := $(shell test "$(REVDESC)" = "$$(cat .revdesc 2> /dev/null)" ||\
echo "$(REVDESC)" > .revdesc)
%.texi: %.org .orgconfig .revdesc
@printf "Generating $@\n"
@$(EMACS_ORG) $< $(ORG_EVAL)
%.info: %.texi
@printf "Generating $@\n"
@$(MAKEINFO) --no-split $< -o $@
dir: magit.info magit-section.info
@printf "Generating dir\n"
@echo $^ | xargs -n 1 $(INSTALL_INFO) --dir=$@
HTML_FIXUP_CSS = '/<link rel="stylesheet" type="text\/css" href="https:\/\/$(DOMAIN)\/assets\/page.css">/a\
<link rel="icon" href="https://$(DOMAIN)/assets/magit_alt1.ico">\
\n<link class="s-css-s--style" rel="stylesheet" title="Default" href="https://$(DOMAIN)/assets/themes/default.css">\
\n<link class="s-css-s--style" rel="stylesheet alternate" title="Default high contrast" href="https://$(DOMAIN)/assets/themes/default-high-contrast.css">\
\n<link class="s-css-s--style" rel="stylesheet alternate" title="Solarized dark xterm" href="https://$(DOMAIN)/assets/themes/solarized-dark-xterm.css">\
\n<link class="s-css-s--style" rel="stylesheet alternate" title="Black on white" href="https://$(DOMAIN)/assets/themes/black-on-white.css">\
\n<script src="https://$(DOMAIN)/assets/js/simple-css-switch.js"></script>'
HTML_FIXUP_ONLOAD = 's/<body lang="en">/<body lang="en" onload="simpleCssSwitch()">/'
HTML_FIXUP_MENU = '/<\/body>/i<div id="s-css-s--menu"><\/div>'
%.html: %.texi
@printf "Generating $@\n"
@$(MAKEINFO) --html --no-split $(MANUAL_HTML_ARGS) $<
@sed -i -e $(HTML_FIXUP_CSS) -e $(HTML_FIXUP_ONLOAD) -e $(HTML_FIXUP_MENU) $@
%/index.html: %.texi
@$(RMDIR) $(HTMLDIRS)
@printf "Generating magit/*.html\n"
@$(MAKEINFO) --html -o $(PKG)/ $(MANUAL_HTML_ARGS) magit.texi
@for f in $$(find magit -name '*.html') ; do \
sed -i -e $(HTML_FIXUP_CSS) -e $(HTML_FIXUP_ONLOAD) -e $(HTML_FIXUP_MENU) $$f ; \
done
@printf "Generating magit-section/*.html\n"
@$(MAKEINFO) --html -o $(PKG)-section/ $(MANUAL_HTML_ARGS) magit-section.texi
@for f in $$(find magit-section -name '*.html') ; do \
sed -i -e $(HTML_FIXUP_CSS) -e $(HTML_FIXUP_ONLOAD) -e $(HTML_FIXUP_MENU) $$f ; \
done
%.pdf: %.texi
@printf "Generating $@\n"
@texi2pdf --clean $< > /dev/null
%.epub: %.texi
@printf "Generating $@\n"
@$(MAKEINFO) --docbook $< -o epub.xml
@xsltproc $(DOCBOOK_XSL) epub.xml 2> /dev/null
@echo "application/epub+zip" > mimetype
@zip -X --quiet --recurse-paths -0 $@ mimetype
@zip -X --quiet --recurse-paths -9 --no-dir-entries $@ META-INF OEBPS
@$(RMDIR) $(EPUBTRASH)
## Install ###########################################################
install: install-info install-docs
install-docs: install-info
@$(MKDIR) $(DESTDIR)$(docdir)
$(CP) AUTHORS.md $(DESTDIR)$(docdir)
install-info: info
@$(MKDIR) $(DESTDIR)$(infodir)
$(CP) $(INFOPAGES) $(DESTDIR)$(infodir)
## Clean #############################################################
clean:
@printf " Cleaning docs/*...\n"
@$(RMDIR) dir $(INFOPAGES) $(HTMLFILES) $(HTMLDIRS) $(PDFFILES)
@$(RMDIR) $(EPUBFILES) $(EPUBTRASH)
@$(RMDIR) $(GENSTATS_DIR)
## Release management ################################################
authors: AUTHORS.md
AUTHORS.md:
@printf "Generating AUTHORS.md..."
@test -e $(TOP).git \
&& (printf "$$AUTHORS_HEADER\n" > $@ \
&& git log --pretty=format:'- %aN' | sort -u | \
grep -v dependabot >> $@ \
&& printf "done\n" ; ) \
|| printf "FAILED (non-fatal)\n"
@git commit --gpg-sign -m "AUTHORS.md: Update list of contributors" \
-o -- $@ ../.mailmap && git show --pretty= -p HEAD || true
DOCS_DOMAIN = docs.$(DOMAIN)
SNAP_TARGET = $(subst .,_,$(DOCS_DOMAIN)):devel/
DOCS_TARGET = $(subst .,_,$(DOCS_DOMAIN)):
publish: redo-docs
@printf "Publishing snapshot manual...\n"
@cp $(PKG).pdf $(PKG)/$(PKG).pdf
@cp $(PKG)-section.pdf $(PKG)-section/$(PKG)-section.pdf
@$(RCLONE) sync $(RCLONE_ARGS) $(PKG) $(SNAP_TARGET)/$(PKG)/
@$(RCLONE) sync $(RCLONE_ARGS) $(PKG)-section $(SNAP_TARGET)/$(PKG)-section/
release: redo-docs
@printf "Publishing release manual...\n"
@cp $(PKG).pdf $(PKG)/$(PKG).pdf
@cp $(PKG)-section.pdf $(PKG)-section/$(PKG)-section.pdf
@$(RCLONE) sync $(RCLONE_ARGS) $(PKG) $(DOCS_TARGET)/$(PKG)/
@$(RCLONE) sync $(RCLONE_ARGS) $(PKG)-section $(DOCS_TARGET)/$(PKG)-section/
## Statistics ########################################################
STAT_DOMAIN = stats.$(DOMAIN)
STAT_TARGET = $(subst .,_,$(STAT_DOMAIN)):$(PKG)/
stats:
@printf "Generating statistics\n"
@$(GITSTATS) $(GITSTATS_ARGS) $(TOP) $(GITSTATS_DIR)
stats-upload:
@printf "Uploading statistics...\n"
@$(RCLONE) sync $(RCLONE_ARGS) stats $(STAT_TARGET)
## Lisp ##############################################################
# When making changes here, then also adjust the copy in magit-base.el.
define ORG_MAN_EXPORT
(define-advice org-man-export (:around (fn link description format) gitman)
(if (and (eq format 'texinfo) ;'
(string-match-p "\\`git" link))
(replace-regexp-in-string "%s" link "
@ifinfo
@ref{%s,,,gitman,}.
@end ifinfo
@ifhtml
@html
the <a href=\"http://git-scm.com/docs/%s\">%s(1)</a> manpage.
@end html
@end ifhtml
@iftex
the %s(1) manpage.
@end iftex
")
(funcall fn link description format)))
endef
export ORG_MAN_EXPORT
## Templates #########################################################
define AUTHORS_HEADER
The following people have contributed to Magit.
For statistics see https://$(STAT_DOMAIN)/magit/authors.html.
Authors
-------
- Marius Vollmer
- Jonas Bernoulli
Active Maintainers
------------------
- Jonas Bernoulli
- Kyle Meyer
Former Maintainers
------------------
- Nicolas Dudebout
- Noam Postavsky
- Peter J. Weisberg
- Phil Jackson
- Rémi Vanicat
- Yann Hodique
All Contributors
----------------
endef
export AUTHORS_HEADER
================================================
FILE: docs/RelNotes/0.5.1.txt
================================================
Magit v0.5.1 Release Notes
==========================
This is the first release of Magit. Enjoy!
Released 14 August 2008 by Marius Vollmer.
Authors
-------
157 Marius Vollmer
================================================
FILE: docs/RelNotes/0.6.1.txt
================================================
Magit v0.6.1 Release Notes
==========================
Released 16 October 2008 by Marius Vollmer.
Changes since v0.5.1
--------------------
Almost everything has changed. Some highlights:
* Magit now works with Git 1.6.0. (John Wiegley)
* Support for interactive rewriting.
* Sections can be shown and hidden.
* Staging, unstaging, applying, reverting and discarding changes can
now be done line-by-line, not only hunk-by-hunk.
Authors
-------
212 Marius Vollmer
- John Wiegley
================================================
FILE: docs/RelNotes/0.7.0.txt
================================================
Magit v0.7.0 Release Notes
==========================
Released 8 March 2009 by Marius Vollmer.
Changes since v0.6.1
--------------------
* Tagging, on 't' and 'T'.
* Stashing, on 'z' and 'Z'.
* Wazzup, on 'w'. Wazzup gives you an overview over how other
branches relate to the current one.
* There is more control over pushing. 'P' now takes a prefix argument
and pushing a branch without a default remote will ask for one.
* Logs have changed a bit: 'l' shows the traditional brief log, and
'L' shows a more verbose log. Use the prefix arg to specify the
range of the log.
* M-x magit-status doesn't prompt anymore for a directory when invoked
from within a Git repository. Use C-u to force a prompt.
* When you have nothing staged, 'c' will now explicitly ask whether to
commit everything instead of just going ahead and do it. This can
be customized.
* The digit keys '1', '2', '3', and '4' now show sections on the
respective level and hide everything below. With Meta, they work on
all sections; without, they work only on sections that are a parent
or child of the current section.
* Typing '+' and '-' will change the size of hunks, via the "-U"
option to git diff. '0' resets hunks to their default size.
* Typing 'k' on the "Untracked files" section title will offer to
delete all untracked files.
* Magit understands a bit of git-svn: the status buffer shows unpushed
and unpulled commits, 'N r' runs git svn rebase, and 'N c' runs git
svn dcommit.
* Magit now also works when the directory is accessed via tramp.
* M-x magit-status can also create new repositories when given a
directory that is not a Git repository.
* Magit works better with oldish Gits that don't understand "--graph",
for example.
* The name of the Git program and common options for it can be
customized.
Authors
-------
107 Marius Vollmer
18 John Wiegley
9 Alexey Voinov
5 Marcin Bachry
3 Rémi Vanicat
2 Alex Ott
2 René Stadler
2 Steve Purcell
1 Daniel Farina
1 David Wallin
1 Ian Eure
1 Jesse Alama
================================================
FILE: docs/RelNotes/0.8.0.txt
================================================
Magit v0.8.0 Release Notes
==========================
Released 7 May 2010 by Phil Jackson.
Changes since v0.7.0
--------------------
* By setting magit-repo-dirs, you can get better repo completion.
Magit will offer all subdirectories (up to magit-repo-dirs level
deep) of the listed directories when magit-status asks for a
directory to work on. You can get the old behavior with a double
prefix to magit-status.
* Hitting 'c' or 'C' while resolving a conflict in the middle of a
rebase will offer to continue the rebase instead of trying to commit
your changes.
* Pulling will ask which branch to pull from when you don't have a
default branch configured.
* Switching to a remote branch will offer to create a local tracking
branch for it.
* Hitting C-c C-s while editing a commit message will toggle the
"--signoff" option.
* Hitting 's' on the "Untracked files" section title will stage all
untracked files.
* Hitting 'C-u S' will stage all untracked and tracked files.
* Performance improvements in the status buffer.
* Bug fixes to make Magit work better with newer Gits.
Authors
-------
66 Phil Jackson
53 Marius Vollmer
27 Rémi Vanicat
7 Alexey Voinov
5 Hannu Koivisto
5 Roger Crew
4 John Wiegley
4 Moritz Bunkus
3 Ben Walton
2 Marcin Bachry
2 Óscar Fuentes
1 David Abrahams
1 Leo Liu
1 Pavel Holejsovsky
1 Ramkumar Ramachandra
1 Steve Purcell
================================================
FILE: docs/RelNotes/0.8.1.txt
================================================
Magit v0.8.1 Release Notes
==========================
Released 10 June 2010 by Phil Jackson.
Changes since v0.8.0
--------------------
* New library `rebase-mode.el'. Edit Git rebase files.
* New commands `magit-log-all' and `magit-log-first-parent'.
* New command `magit-git-command'. Run any Git command.
* `magit-remote-update' learned to fetch just the current remote.
* `magit-tag' learned to place the tag on something other than HEAD.
Authors
-------
55 Phil Jackson
7 Rémi Vanicat
7 Ævar Arnfjörð Bjarmason
4 Natalie Weizenbaum
2 Ramkumar Ramachandra
1 Mark Hepburn
1 Moritz Bunkus
================================================
FILE: docs/RelNotes/0.8.2.txt
================================================
Magit v0.8.2 Release Notes
==========================
Released 10 July 2010 by Phil Jackson.
Changes since v0.8.1
--------------------
* Use shorter more human readable representations for refs.
* Optionally show refs for remote branches the way Git would.
* Tell VC to update the mode-line for us.
Authors
-------
21 Phil Jackson
18 Natalie Weizenbaum
2 Alan Falloon
2 Moritz Bunkus
2 Rémi Vanicat
1 Alex Ott
1 Leo Liu
1 Sean Bryant
1 Ævar Arnfjörð Bjarmason
1 Óscar Fuentes
================================================
FILE: docs/RelNotes/1.0.0.txt
================================================
Magit v1.0.0 Release Notes
==========================
Released 23 March 2011 by Phil Jackson.
Changes since v0.8.2
--------------------
* New library `magit-key-mode.el'. From a popup buffer dispatch
Magit/Emacs commands which wrap Git commands and select the
arguments passed to Git. Group various sets of related commands
in new menus and adjust them accordingly.
* New library `magit-svn.el' based on code previously in `magit.el'.
Improve the implementation. Control `git svn' from Magit.
* New library `magit-topgit.el' based on code previously in
`magit.el'. Improve the implementation. Control TopGit from Magit.
* Provide a wrapper for `completing-read'. Support using iswitchb to
do completion.
* Fixed and improved information shown during a rebase.
* New macro `magit-define-inserter' to define functions which insert
sections.
* New macro `magit-add-action'. A hook-like extension mechanism for
commands that behave differently based on the type of the section
at point.
* New macro `magit-define-command'. Like `defun' but also define
a hook in addition to the function/command. If a hook function
succeeds do not run the function body as passed to this macro.
* New commands `magit-add-change-log-entry'
and `magit-add-change-log-entry-other-window'.
* New command `magit-change-what-branch-tracks'.
* New commands `magit-run-git-gui' and `magit-run-gitk'.
* Various new submodule commands.
* Various new branch commands.
* Various new log commands. Remove some old log commands.
* Make reflog commands more like the log commands.
* Numerous bugfixes and tweaks.
Authors
-------
197 Phil Jackson
27 Natalie Weizenbaum
25 Óscar Fuentes
22 Moritz Bunkus
20 Rémi Vanicat
17 Aaron Culich
10 Timo Juhani Lindfors
8 Ramkumar Ramachandra
8 Ævar Arnfjörð Bjarmason
6 Yann Hodique
5 Hannu Koivisto
5 Julien Danjou
5 Peter J. Weisberg
4 Leo Liu
3 Robin Green
2 Brian Warner
2 Christian Kluge
2 Marc Herbert
1 Andreas Fuchs
1 Chris Bernard
1 David Abrahams
1 Dominique Quatravaux
1 John Wiegley
1 Paul Stadig
1 Philip Weaver
1 Remco van 't Veer
1 Robert Boone
1 Rüdiger Sonderfeld
1 Tom Feist
================================================
FILE: docs/RelNotes/1.1.0.txt
================================================
Magit v1.1.0 Release Notes
==========================
Released 23 December 2011 by Yann Hodique.
Changes since v1.0.0
--------------------
* Added distinct faces for various different kinds of refs.
* Completely redesigned existing faces.
* Added library `magit-classic-theme.el' for users who like the old
faces better.
* Share many more key bindings between all Magit modes. Previously
many commands were only available in certain buffers, even though
they are useful in all Magit buffers.
* Added library `magit-simple-keys.el' for users who don't like the
popups.
* Added support for using Ido to do completion.
* Added support for Ediff.
* Added shell script `magit'.
* Added library `magit-bisect.el'.
* Added library `magit-stgit.el'.
* Added mode `magit-svn-mode'.
* Added mode `magit-topgit-mode'.
* Added mode `magit-rebase-mode'.
* Added buttons to commit buffer to cycle to commits which were
previously shown. The commands are `magit-show-commit-backward'
and `magit-show-commit-forward.
* Defined backward compatibility implementations of some Emacs
functions.
* Type changes are now shown in diffs.
* Added option `magit-set-upstream-on-push'.
* Added option `magit-default-tracking-name-function'.
* Added option `magit-log-auto-more'.
* Added option `magit-create-branch-behaviour'.
* Added option `magit-status-buffer-switch-function'.
* Added option `magit-rewrite-inclusive'.
* Added options `magit-highlight-trailing-whitespace' and
`magit-highlight-indentation'.
* Added command `magit-show'. Visit REVISION:FILE.
* Added command `magit-delete-branch-forced'.
* Added command `magit-log-edit-toggle-author'.
* `magit-reset-working-tree' learned to remove untracked files.
* `magit-push' learned to set the upstream branch.
Authors
-------
152 Peter J. Weisberg
55 Yann Hodique
18 Phil Jackson
18 Pieter Praet
18 Rémi Vanicat
12 Moritz Bunkus
10 Lluís Vilanova
8 Eli Barzilay
7 Nicolas Dudebout
6 Roger Crew
5 Štěpán Němec
3 David Abrahams
3 Hannu Koivisto
3 Jeff Bellegarde
3 Rüdiger Sonderfeld
2 Alan Falloon
2 Andreas Rottmann
2 Andrew Kirkpatrick
2 Craig Andera
2 Jasper St. Pierre
1 Andrey Smirnov
1 Bastian Beischer
1 Chris Moore
1 Daniel Brockman
1 Eric Davis
1 George Kadianakis
1 Kimberly Wolk
1 Luke Amdor
1 Luís Borges de Oliveira
1 Marc Herbert
1 Marco Craveiro
1 Ramkumar Ramachandra
1 Steve Purcell
1 Thomas Jost
1 Tibor Simko
1 Tom Feist
1 Ævar Arnfjörð Bjarmason
================================================
FILE: docs/RelNotes/1.1.1.txt
================================================
Magit v1.1.1 Release Notes
==========================
Released 14 January 2012 by Yann Hodique.
Changes since v1.1.0
--------------------
* `magit-svn-get-local-ref' learned to expand branch specs containing
braces.
* `magit-log-edit' learned to amend and create commits with no message.
* Several other fixes and improvements.
Authors
-------
6 Nicolas Dudebout
6 Yann Hodique
1 Graham Clark
1 Justin Caratzas
1 Peter J. Weisberg
1 Ryan C. Thompson
1 Timo Juhani Lindfors
================================================
FILE: docs/RelNotes/1.1.2.txt
================================================
Magit v1.1.2 Release Notes
==========================
Released 23 September 2012 by Yann Hodique.
Changes since v1.1.1
--------------------
* Modes now have proper mode-line lighters.
* Hook variables are now defined semi-explicitly.
* Uninteresting refs are no longer shown in logs.
* The deprecated `assoc' library is no longer used.
* Several other fixes and improvements.
Authors
-------
13 Yann Hodique
9 Peter J. Weisberg
2 Jonas Bernoulli
2 Ramkumar Ramachandra
1 Bradley Wright
1 Bryan Shell
1 Damien Cassou
1 Eric Davis
1 John Wiegley
1 Nic Ferier
1 Nick Alcock
1 Rémi Vanicat
================================================
FILE: docs/RelNotes/1.2.0.txt
================================================
Magit v1.2.0 Release Notes
==========================
Released 23 September 2012 by Yann Hodique.
Changes since v1.1.2
--------------------
* Rewrote the branch manager.
* Diffs are optionally refined using `diff-refine-hunk'.
* Added library `magit-blame.el' defining new mode
`magit-blame-mode'.
* Added library `magit-wip.el' defining new modes
`magit-wip-save-mode' and `magit-wip-mode'.
* New section movement commands; `magit-goto-next-sibling-section'
and `magit-goto-previous-sibling-section'.
* Added command `magit-file-log'.
* Added command `magit-manual-merge'.
* `magit-delete-branch-force' was merged into `magit-delete-branch'.
* `magit-move-branch' learned to force the rename.
* `magit-reset-working-tree' learned to remove ignored files.
* `magit-pull' learned to set `branch.BRANCH.merge'.
* `magit-log-edit' learned to respect GIT_AUTHOR_EMAIL,
GIT_AUTHOR_NAME and GIT_AUTHOR_DATE.
* `magit-visit-item' learned to visit untracked files, diffs and
hunks.
* Added option `magit-sha1-abbrev-length'.
Authors
-------
157 Yann Hodique
61 Nicolas Dudebout
14 Peter J. Weisberg
12 Jonas Bernoulli
10 Ryan C. Thompson
7 Miles Bader
6 Damien Cassou
5 Samuel Bronson
4 Dale Hagglund
4 Eli Barzilay
4 Takafumi Arakaki
4 rabio
3 Leonardo Etcheverry
3 Nick Alcock
3 Rémi Vanicat
3 Rüdiger Sonderfeld
2 Graham Clark
2 Hans-Peter Deifel
2 Moritz Bunkus
1 Andreas Liljeqvist
1 Christian Dietrich
1 Christopher Monsanto
1 Daniel Hackney
1 Hannu Koivisto
1 John Wiegley
1 Jonathan Roes
1 Ole Arndt
1 Ron Parker
1 Suhail Shergill
================================================
FILE: docs/RelNotes/1.2.1.txt
================================================
Magit v1.2.1 Release Notes
==========================
Released 23 May 2014 by Jonas Bernoulli.
Changes since v1.2.0
--------------------
* `magit-delete-directory' was rewritten to deal with an incompatible
change in `delete-directory' in Emacs v24.4.
Authors
-------
1 Jonas Bernoulli
================================================
FILE: docs/RelNotes/1.2.2.txt
================================================
Magit v1.2.2 Release Notes
==========================
Released 23 October 2014 by Jonas Bernoulli.
Changes since v1.2.1
--------------------
* `magit-delete-directory' uses itself when deleting recursively,
instead of `org-delete-directory' which it was copied from.
* Many byte-compile warnings were addressed.
Authors
-------
5 Jonas Bernoulli
================================================
FILE: docs/RelNotes/1.4.0.txt
================================================
Magit v1.4.0 Release Notes
==========================
Released 1 April 2015 by Jonas Bernoulli.
This release sits in the middle of a commit marathon that lasted for
more than 4700 commits.
When I became Magit's new maintainer during the summer of 2013 Magit
was already a big success, but underneath its shiny surface it was
having some serious problems. Over the years the source had gotten
very disorganized and many old abstractions were no longer sufficient.
Unfortunately existing code had almost never been adjusted when new
features had been added, leading to a lot of new code that worked
around limitations of existing code.
This was clearly not sustainable in the long run, and so I started
cleaning up and replacing the existing abstractions with simpler, yet
often more powerful implementations. Unfortunately his had to happen
incrementally as it was seldom possible to cleanup one area without
making substantial changes elsewhere. Along the way I also addressed
many of the hundreds of feature requests, but that was more of a bonus
- the focus was on getting the codebase ready for future improvements.
At the beginning of 2014 I moved development to the new next branch.
Working on a branch which was not used by thousands of Melpa users
allowed me to move faster and users were no longer affected by the
occasional regression. But it also meant that I now had to maintain
two branches. In hindsight I should have released the master branch
as 1.3.0 at that time, despite all the known defects it had.
Since then I have finished the cleanup on the next branch and then
moved on to implement many new features. On the master branch the
focus was on bugfixes and the occasional backport. This release is
based on the master branch. Later this spring 2.1.0 will be released
based on the next branch.
Compiling a list of all changes in 1.4.0 would by a major amount of
work in itself, so instead the below list is for the most part limited
to major changes, which enabled the user visible changes. Many users
don't have to be told about the new features anyway - they have been
using them for more than a year now.
Changes since v1.2.2
--------------------
* The libraries `magit-topgit.el', `magit-stgit.el', and
`magit-svn.el' all reincarnated as separate repository.
* The libraries `magit-classic-theme.el' and `magit-simple-keys.el',
which allowed users to undo some of the changes in older releases,
were removed.
* The library `rebase-mode.el' was renamed to `git-rebase-mode.el'
and moved to the `magit/git-modes' repository.
* The library `magit-log-edit-mode.el' was removed and replaced with
`git-commit-mode.el' from the `magit/git-modes' repository.
* The functionality provided by the library `magit-bisect.el' was
replaced with a new implementation in `magit.el'.
* The package `cl-lib` is now used instead of the obsolete `cl'.
* The library `magit.el' no longer lacks any recognizable structure.
* The macro `magit-define-command' was removed.
The hook that was defined in addition to the command only served
to make things more complicated and the generated doc-string was
insufficient.
* The use of "section actions" has been reduced to a minimum.
Commands that behave differently depending on the type of the
current section still use `magit-section-case' or in some cases
even `magit-section-action', but the preferred way for users to
add new variants now is to add a new command to the type-specific
section keymap, instead of the hooks defined by
`magit-section-action'.
* More work is done directly in `magit-with-section'.
Most of the helper functions were removed. These functions
were not intended to be used directly, but that did not keep
contributors from doing so, leading to many inconsistencies.
* The mode machinery was massively refactored.
Most importantly the new macro `magit-mode-setup' was added,
replacing the old `magit-mode-init' which forgoes most of the
things each and every of its callers has to do, which let to many
inconsistencies
* The refresh machinery was massively refactored.
A refresh now has to be requested more explicitly by either calling
`magit-refresh' or one of the functions that call Git and then the
former. Also, refreshing now more often correctly preserves point.
* Washing diffs now takes less cycles.
Previously the code used to wash diffs was very complicated. It
passed around state using many dynamically bound variables, and
called `git diff' many times. Now we call `git diff' once and then
wash its output in one go.
* Commits and stashes are now washed using the regular diffwasher.
* Low-level functions for running Git were massively refactored, and
many new variants were added. Previously many callers had to deal
with the gory details themselves (and usually did it badly).
* The output from processes is now logged in a dedicated buffer.
From this buffer it's also possible to kill a running process.
* The Wazzup buffer was massively refactored.
All options to optionally make it faster were removed, as it is now
faster out-of-the-box without sacrificing any functionality at all.
* Many more competing abstractions were unified.
It was common to have one no longer sufficient core abstraction, and
several competing wrapper abstractions. In most cases this has been
replaced with a single, less complex implementation, which serves all
of the current use cases.
* Refreshing "after a asynchronous process has run" now happens after
the process has actually finished. That was always the intention,
but not what actually used to happen.
* The commit message is no longer provided when calling `git commit'.
Instead Git populates a file with a template and then uses $EDITOR
to have the user edit that. This did not work so well for a while
but now we succeed in having the emacsclient being used as $EDITOR.
* A new Branch Manager was added.
* Log learned to show optionally show author information in the
margin.
* Terminology with regards to what a tracking branch is, was fixed.
* When creating a new branch the default choice is what Git would
default to, instead of some silly name.
* Tools used to test whether Git supports certain features was removed.
Instead we now require a non-ancient version of Git.
* The shell script `magit' reincarnated as a separate repository.
Authors
-------
1838 Jonas Bernoulli
171 Yann Hodique
121 Pieter Praet
59 Rémi Vanicat
24 Nicolas Dudebout
21 Takafumi Arakaki
16 acple
14 Phil Jackson
13 Rüdiger Sonderfeld
12 Mitchel Humpherys
8 Servilio Afre Puentes
7 Ramkumar Ramachandra
7 Teruki Shigitani
6 Lluís Vilanova
6 Sergey Vinokurov
5 Thierry Volpiatto
4 Moritz Bunkus
4 Noam Postavsky
4 Seong-Kook Shin
3 Laurent Laffont
3 Leonardo Etcheverry
3 Loic Dachary
3 Raimon Grau
3 Sébastien Gross
2 Bastian Beischer
2 Damien Cassou
2 Evgkeni Sampelnikof
2 Greg A. Woods
2 Greg Sexton
2 Jesse Alama
2 Leandro Facchinetti
2 Nguyễn Tuấn Anh
2 Nick Alexander
2 Pekka Pessi
2 Philippe Vaucher
2 Rafael Laboissiere
2 Sebastian Wiesner
1 Abdo Roig-Maranges
1 Adam Spiers
1 Andrei Chițu
1 Andrew Schwartzmeyer
1 Brandon W Maister
1 Chris Done
1 Chris Ring
1 Christopher Monsanto
1 Cornelius Mika
1 Dan LaManna
1 David Hull
1 Dennis Paskorz
1 Divye Kapoor
1 Eric Schulte
1 Felix Geller
1 Feng Li
1 Geoff Shannon
1 Jan Tatarik
1 Jeff Dairiki
1 John Wiegley
1 Jordan Greenberg
1 Kyle Meyer
1 Lele Gaifax
1 Manuel Vázquez Acosta
1 Marcel Wolf
1 Marian Schubert
1 Matus Goljer
1 Nick Dimiduk
1 Nicolas Richard
1 Peter J. Weisberg
1 Philipp Haselwarter
1 Prathamesh Sonpatki
1 Romain Francoise
1 Roy Crihfield
1 Sanjoy Das
1 Sergey Pashinin
1 Steve Purcell
1 Steven Chow
1 Steven Thomas
1 Thomas Frössman
1 Thomas Riccardi
1 Ting-Yu Lin
1 Wilfred Hughes
1 Win Treese
1 York Zhao
1 aaa707
1 Ævar Arnfjörð Bjarmason
================================================
FILE: docs/RelNotes/1.4.1.txt
================================================
Magit v1.4.1 Release Notes
==========================
Released 12 April 2015 by Jonas Bernoulli.
This is a bugfix release.
Changes since v1.4.0
--------------------
* The external library `magit-log-edit.el' is no longer supported.
If it is still installed, then instruct the user to remove it.
* The function `magit-maybe-show-setup-instructions' is now run even
when `magit' has not been loaded by the time `after-init-hook' ran.
* Invalid `:package-version' keywords in option definitions were
fixed. In some cases the value was "2.1.0" instead of "1.4.0".
* Some unnecessary obsolete-variable definitions were removed.
* Running tests on Travis CI was fixed.
* The Makefile, README.md, and release notes received minor fixes
and cleanup.
Authors
-------
9 Jonas Bernoulli
1 Noam Postavsky
================================================
FILE: docs/RelNotes/1.4.2.txt
================================================
Magit v1.4.2 Release Notes
==========================
Released 8 June 2015 by Jonas Bernoulli.
This is a bugfix release.
Changes since v1.4.1
--------------------
* Automatic revers of file-visiting buffers now works again in Emacs
version 24.5. It was broken due to an incompatible change in that
Emacs release.
* Git's reflogs sometimes end with bogus entries. We now work around
that when listing stashes.
Authors
-------
11 Jonas Bernoulli
1 Peter Vasil
1 Steven E. Harris
================================================
FILE: docs/RelNotes/2.1.0.txt
================================================
Magit v2.1.0 Release Notes
==========================
Released 1 July 2015 by Jonas Bernoulli.
This release marks the end of a commit marathon that lasted for more
than 4700 commits. It is the first major release in over two and a
half years. The last major release was 1.2.0, which was released
under old leadership. Version 1.4.0, which I released earlier this
year, for the most part consisted of changes that prepared for this
release (so you might want to read the respective release notes too).
This release comes with many new and exciting features, but the most
important change is the massive increase in consistency both in the
user interface and the internal abstractions.
Magit always provided a very intuitive staging interface, which is
vastly superior to `git add --interactive'. This release extends this
to other apply variants. Starting with this release, other areas have
also begun to be more than just incremental improvements over what Git
itself provides. But this is still limited to certain features which
have gotten more attention than others (most prominently rebasing).
Interlude
---------
The code base is finally in a state that allows me to concentrate on
implementing my vision of what version control could be like. But
this will only be possible if, unlike during the last two and a half
years, I am being paid for my work.
I intend to run a fund-raising campaign, but you can already donate
now (see http://magit.vc/donations.html). I am also looking for
corporate sponsorship and/or employment. One area where Magit
actually lags behind other Git clients is integration with Git hosting
platforms and code review tools. I hope that these platforms have an
interest in being supported by the best Git client and are willing to
pay for it.
I am very interested in a job that would let me work on Magit *and* on
other projects, which would benefit from the skills I have acquired
integrating two complex systems and dealing with all the social and
technical challenges that arise when running a popular project.
Changes since v1.4.0
--------------------
* A new manual has been added. It's much more comprehensive than the
old manual and instead of just documenting the various commands and
options, it also explains concepts and plumbing functions, and
comes with extensive indices for commands, functions, and options.
Actually three new manuals were added; the packages `magit-popup'
and `with-editor' are documented in separate manuals.
The manuals are written in Org mode and then exported to Texinfo.
* Performance is much better now. In most cases this was achieved by
delaying work until it is actually needed. Most importantly diffs
are only partially washed until being fully expanded. Some
features come in a fancy and in a fast variant; when that is the
case, we now usually default to the fast variant.
* Many options can now be set on a per-repository basis, and the
manual describes how to do so. (Actually this was always possible
but, because it was undocumented, nobody did it.) It's possible to
define "repository classes", e.g. "huge repositories", and then add
the respective repositories to that class. This is very useful in
order to turn off certain features only in repositories where they
would have a negative impact on performance, without having to do
it for each repository individually.
* Many faces have been simplified. Most importantly, section heading
faces no longer set a background color (except for hunk headings)
and instead just use the default background. Refname faces no
longer set the background color or the box property.
* Many, probably the majority of, functions, variables, and faces
have been renamed, which was necessary because there was very
little consistency before.
Most importantly, the names of commands and options now begin with
a prefix that includes the name of the respective git sub-command.
For example, the names of all commands and options related to
diffing now begin with `magit-diff-'.
Many plumbing functions and variables were also renamed. In some
cases, that also lead to shared prefixes, such as `magit-process-',
`magit-mode-', `magit-git-', and `magit-insert-'. But many
plumbing functions and variables continue to use names whose only
common part is the `magit-' prefix.
Future renames will be performed at well defined times and obsolete
function/variable definitions will be provided for backward
compatibility. No renames are planned at present.
* The external libraries `git-commit-mode.el' and `git-rebase-mode.el'
are no longer required and have to be uninstalled because they
conflict with their successors `git-commit.el' and `git-rebase.el',
which are now maintained inside the Magit repository instead of the
Git-Modes repository.
The library `git-commit.el' can be used without Magit, so it is
distributed as a separate Elpa package. However, `git-rebase.el'
now depends on several Magit libraries and is therefore distributed
as part of the `magit' package.
* The library `magit-key-mode.el' was removed and replaced with
`magit-popup.el'. The new implementation is much more flexible and
easier to use than the old one. Major new features include setting
default arguments directly inside the popup and macros for defining
new popups and extending existing popups.
This new library can also be used by packages that are not related
to Magit and is therefore available as a separate Elpa package.
* The library `with-editor.el' was added. Its purpose is to use the
emacsclient as $GIT_EDITOR when git is started as a subprocess and
requires an editor. This is used while committing and rebasing.
This also works over Tramp, where a "sleeping editor" shell script
is used to communicate over standard output instead of a socket
like the emacsclient does.
The `1.4.0' release already supported this, but this release splits
this feature into a separate library. And now that it is a separate
library, it can also be used by packages that are not related to
Magit. `with-editor.el' is distributed as a separate Elpa package.
* All libraries are now located in the new `lisp/' subdirectory.
* The library `magit.el' has been split into many new libraries.
The code base is now much better organized. Together with the
description of plumbing commands in the manual, this should make it
much easier for contributors to get started.
* The library `magit-wip.el' has been rewritten from scratch and no
longer depends on the external and unmaintained shell script from
https://github.com/bartman/git-wip.
* There are now three different modes that commit to the
work-in-progress refs before/after certain events, and in addition
to the old working tree wip refs, these modes now also commit to
index wip refs. When these new modes are turned on, Git's
protection of committed (but dangling) changes is effectively
extended to uncommitted changes (which some exceptions). These
modes are not enabled by default due to performance concerns.
* The library `magit-blame.el' has been rewritten from scratch. The
new implementation can blame recursively, jump to the next/previous
chunk from the same commit, replace headings with separator lines,
scroll the revision buffer for the chunk at point (like log buffers),
and fine-tune the arguments for `git blame' using a popup.
* The new library `magit-ediff.el' replaces the old Ediff support.
The new implementation comes with a dwim command and a popup, and
it relies less on high-level functions provided by VC and Ediff
itself, because many of those turned out to be unsuitable.
* The popular third-party library `dash.el' is now required. This
is the only mandatory external dependency now, except for Git and
Emacs themselves, of course.
* When using Ido inside Magit, users now have to install the
third-party library `ido-completing-read+.el'. This is necessary
because the function `ido-completing-read', which is part of the
built-in library `ido.el', is not a sufficient drop-in replacement
for `completing-read'.
* The new macro `magit-insert-section' replaces `magit-with-section'.
The macros `magit-cmd-insert-section' and `magit-git-insert-section'
were removed without a direct replacement.
* The new functions `magit-insert' and `magit-put-face-property' take
care of working around the fact that negative overlay priorities
are not supported, i.e., that overlays always take precedence
against text properties. Previously this was done in various
places, and not always correctly (e.g., in some cases overlays did
not evaporate).
* The section visibility and movement commands were rewritten from
scratch. All those commands now share the prefix `magit-section-'
and edge cases are handled better. New commands were added that
allow cycling the visibility of sections and their children. From
a user perspective Magit's section handling is now quite similar to
that of Org mode.
* The macro `magit-section-action' was removed. The related macro
`magit-section-case' still exists and will continue to do so. The
action variant provided user-customizable hooks, but these hooks
were rarely, if ever, used. Instead of such action hooks, users who
wish to extend Magit now have to use type-specific section keymaps.
* Section highlighting was rewritten from scratch. The new
implementation uses hooks to allow washing certain section types
differently than others - without obfuscating the simple cases.
Washing diffs is much more complicated than washing all other
sections, and that part has been factored out. The washing of
all other section types is now quite simple.
* The appearance of the region now indicates whether it is valid as a
selection. As far as Magit is concerned, valid selections are hunk
internal regions and regions that mark sibling sections of the same
type. When a region does not satisfy one of these, then it is
displayed the sames as in other buffers and Magit cannot act on it.
* The new option `magit-no-confirm' makes it easy to forgo having to
confirm potentially dangerous actions. Many of these actions are
only dangerous for users who don't know how to undo them. When the
wip modes are turned on, many more previously fatal actions can be
easily undone. Adding `safe-with-wip' here makes it unnecessary to
confirm these actions.
* The new Refs buffer combines the features of the old Wazzup and
Branch Manager buffers into one, more powerful and efficient
synthesis. For each reference, cherries can be shown by expanding
the ref section, but unlike in the Wazzup buffer, the cherries are
not calculated until the expansion happens, making it vastly more
efficient. Besides local and remote branches, the buffer now also
lists tags, and users can add additional sections listing other
refs, e.g., stashes. The format of refs headers is now
customizable.
* File-visiting buffers are now reverted without using code from the
built-in `autorevert.el` library. The function we previously used
was intended for internal use only and indeed, changes made there
broke Magit in the past.
* The new option `magit-revert-buffers' controls whether and how
buffers visiting tracked files are reverted. As before, such
buffers are reverted by default. But by default this is now done
rather noisily to encourage users to read the doc-string and
pick what is right for them. It's now also possible to revert
asynchronously and for the user to be asked every time there are
buffers that could be reverted. This option replaces
`magit-auto-revert-mode`.
* Many new section inserters are available. Some are variations of
default inserters; `magit-insert-unpulled-cherries', for example, is
like `magit-insert-unpulled-commits' but prefixes each commit with
"+" or "-" to indicate its "cherry state". Other inserters are
completely new (e.g., `magit-insert-unpulled-module-commits').
* The header sections in status buffers can now be customized using
the new `magit-status-headers-hook'. This is an additional section
insertion hook; separating it from `magit-status-sections-hook'
gives users complete control over what information is displayed in
the headers, while still making the first header the parent section
of all the other header lines.
* Many commands that previously could only act on the section at
point can now act on all sections selected by a region, which can
span sibling sections of the same type.
* Many commands now more intelligently dwim based on the section at
point.
* Where it makes sense, completion and confirmation have been merged
into a single user action. Many commands that previously allowed
carrying out or aborting some action now also allow the user to act
on something different from the default choice. Where one
previously had to confirm with `yes RET', one now confirms with just
`RET' (to accept the default choice, which previously was the only
choice).
* The distinction between the various "apply variants" has been
clearly worked out, and they now all provide the same feature set.
The variants are: stage, unstage, discard, reverse, and "regular
apply". In all cases, it is possible to act on a file or hunk, or
part of a hunk. When acting on the hunk level, all variants are
implemented on top of `git apply', thus the name "apply variants".
Un-/staging has always been one of Magit's most beloved features,
and this release takes it to the next level by making the other
apply variants just as consistent, powerful, and intuitive to use.
All apply variants are context aware, meaning that, for example, the
stage variant knows that an already staged change cannot be staged.
That leads to better error messages.
* The committing prefix now features additional variants. It was
already possible to quickly create a fixup or squash commit; the
new variants do that and then also instantly perform a rebase to
actually combine these commits with their intended target commits.
* Rebase sequences are now initiated from the new rebasing prefix.
Several rebasing variants exist, of course including basic
"rebase onto something" and interactive rebase. Other variants
automatically detect and combine squash and fixup commits with
their intended targets. Others let the user edit or reword a
single commit, without having to go through the steps that are
irrelevant in these cases.
* When a rebase sequence stops at a commit, then the rebasing prefix
instead features suffix commands for continuing, editing, or
aborting the sequence; or skipping the current commit.
* When a rebase sequence stops, the status buffer displays a list of
the already applied and yet-to-be applied commits. These commits
can be acted on like those in logs.
* Cherry-picking, reverting, and applying patches using `git am' are
treated the same way as rebasing. A prefix command features
several variants to initiate the sequence. When a sequence is in
progress, then the same prefix instead features suffix commands for
continuing or aborting the sequence, and the status buffer lists
the relevant commits.
* The magit-specific "rewriting" feature has been removed because it
was a hybrid of "rebasing" and "cherry-picking" and vastly
inferior to both of them.
* The merging prefix features several new convenient merge variants.
* Merges can now be previewed before actually carrying them out.
* When a merge results in conflicts then the commits being merged are
listed in the status buffer, making it easier to review conflicting
changes in the context they were created.
* Its now possible to discard one side of a conflict directly from
the hunk containing the conflict, using the regular discard key
`k'. It's also possible to restore a conflict.
* When using an existing branch as the starting-point of a new
branch, it is now automatically configured as the upstream branch.
* The branching prefix now features suffix commands for un-/setting
the upstream branch. Previously this was coupled with pushing in
a truly obscure way.
* Branch descriptions can now be displayed in the refs or status
buffer, and the description can be edited using a suffix command
from the branching prefix.
* The URL of a remote can now be changed from the remoting prefix.
* A new pulling prefix command was added, which features several new
pulling variants. Previously only one pulling command existed and
it had to be controlled using prefix arguments, which was very
cumbersome.
* A new pushing prefix command was added, which features several new
pushing variants. Previously only one pushing command existed and
it had to be controlled using prefix arguments, which was very
cumbersome.
* The various tagging commands are now suffix commands of the new
tagging prefix command.
* It is now possible to stash, or create a snapshot from, just the
staged or the unstaged changes, instead of both. Suffix commands
for branching, listing, and showing stashes were added to the
stashing prefix
* When creating stashes the new implementation in `magit-wip.el' is
used instead of `git stash'. This allows the user to create
snapshot stashes without touching any files in the working tree.
* The submodule prefix now features new suffix commands for adding,
setting up, and fetching modules.
* Submodules with unmerged commits can now be displayed in the status
buffer. Sections representing submodules can be expanded to show
their unpulled commits. These commits can be acted on like commits
belonging to the super-project.
* Support for displaying diffs inside the log buffer instead of in a
separate diff buffer has been removed. It might come back one day,
but the old implementation had just fallen behind regular one-line
log too much.
* The logging prefix features many new infix arguments and suffix
commands, which can now be combined in more flexible ways than
before.
* Many commands that previously read a single commit, branch, or
file in the minibuffer, can now read multiple, comma-separated items
from the user, while providing completion candidates for all of
them. Likewise, when selecting a range, completion is available
for the second commit too.
* All of Git's reset variants are now exposed as individual commands,
but not all of them have a key binding by default.
This was just the tip of the iceberg.
Authors
-------
2187 Jonas Bernoulli
28 Sebastian Wiesner
25 Kyle Meyer
19 Noam Postavsky
17 Pieter Praet
12 Rémi Vanicat
9 Florian Ragwitz
5 Philippe Vaucher
5 Ramkumar Ramachandra
4 Cornelius Mika
4 Kan-Ru Chen
4 Syohei Yoshida
3 Alex Dunn
3 Alex Kost
3 Nicolas Richard
2 Eric Schulte
2 Ingo Lohmar
2 Mitchel Humpherys
2 Peter Eisentraut
2 Ryan C. Thompson
1 Adeodato Simó
1 Andrew Schwartzmeyer
1 Andy Sawyer
1 Bradley Wright
1 Guillaume Martres
1 John Mastro
1 John Wiegley
1 Julien Danjou
1 Lingchao Xin
1 Mark Oteiza
1 Michael Fogleman
1 Michael Griffiths
1 Michal Sojka
1 Natalie Weizenbaum
1 Oleh Krehel
1 Peter Vasil
1 Rüdiger Sonderfeld
1 Steven E. Harris
1 Teemu Likonen
1 Thomas A Caswell
1 Tim Perkins
1 Tim Wraight
1 Wei Huang
1 Xavier Noria
================================================
FILE: docs/RelNotes/2.10.0.txt
================================================
Magit v2.10.0 Release Notes
===========================
Released 4 January 2017 by Jonas Bernoulli.
We are pleased to announce the release of Magit version 2.10.0,
representing 85 commits by six people over one month.
Also see https://emacsair.me/2017/01/04/magit-2.10.
Changes since v2.9.0
--------------------
* Many new, well organized, libraries were added, consisting of code
that was previously located inside a messier "magit.el". #2908
* The function `magit-display-buffer' now sets the focus on the frame
used to display the selected window. #2865
* The Custom groups are better organized now. New groups were added,
but many options also moved between groups that already existed
before. 422d776e, 33c5c1ca
* Many Custom groups and options now link to the relevant Info nodes
and to other relevant groups. 810d7fb4
* Many doc-strings were improved, added, and fixed. 47aae617
* Added the function `magit-repolist-column-dirty', which can be added
to `magit-repolist-columns' and `magit-submodule-list-columns'. #2907
* The obsolete variable `magit-repository-directory-depth' is no
longer defined as an option. 09993c39
* The obsolete hook variable `magit-status-refresh-hook' is no longer
defined explicitly. 7e96e831
Fixes since v2.9.0
------------------
* Customizations of hooks were ignored, if the `custom-set-variables'
form was evaluated before the Magit libraries were loaded. #2902
* When rebase stopped at a commit, point was no longer placed on that
commit. #2884
* When creating a commit, `magit-display-buffer-fullcolumn-most-v1'
filled the entire frame, hiding the commit message buffer. #2891
* The commands `magit-reflog' and `magit-reflog-current' reported
a revision's reflog as empty when the name of a file in the
repository, relative to the top-level directory, matched the
revision name. 5264ffcb
* The function `magit-repolist-column-upstream' returned the current
branch instead of its upstream. 46acbd6d
* The functions `magit-repolist-column-unpulled-from-upstream' and
`magit-repolist-column-unpushed-to-upstream' raised a type error
if the upstream was configured but did not exist. #2904
* The default values of the options `magit-submodule-list-columns'
and `magit-repolist-columns' didn't match the documentation and the
Custom type. But the code that that uses these values is resilient
against that defect and so the only effect was that the values were
reported as mismatched in the Custom interface. 79f6af23
* The Custom type of option `magit-update-other-window-delay' didn't
match the default value. eb6d8bde
* The shell command generated by `magit-emacs-Q-command' could end
up trying to load a directory as a library, due to a bug in Emacs.
83980c66, debbugs#16406
This release also contains documentation updates and typo fixes.
Authors
-------
68 Jonas Bernoulli
13 Kyle Meyer
1 Aleksey Uimanov
1 Alexander Gramiak
1 Noam Postavsky
1 Wouter Bolsterlee
================================================
FILE: docs/RelNotes/2.10.1.txt
================================================
Magit v2.10.1 Release Notes
===========================
Changes since v2.10.0
---------------------
* The command `ido-enter-magit-status' is now being autoloaded. #2918
* The minor-mode `bug-reference-mode' is now being suggested when
customizing `magit-revision-mode-hook' and `git-commit-setup-hook'.
e0d57c49
* The function `magit-version' can now deal with the Magit libraries
being symlinked to, which is required for the new `straight' package
manager. #2967
Fixes since v2.10.0
-------------------
* When multiple stashes were selected by the region, responding "no"
when asked to confirm the deletion of these stashes resulted in a
type error. #2917
* The function `magit-split-range' choked on ranges if one of the
revisions was omitted, breaking a diff variant and potentially
other uses as well. #2928
* The function `magit-commit-setup' called without an argument, which
causes the option `enable-local-variables' to be ignored. #2946
* When committing inside a repository that was created using `git
init --separate-git-dir', the diff buffer was empty, instead of
showing the changes about to be committed. For some reason that
git command, unlike other commands that do essentially the same
thing, does not set `core.worktree', which confused Magit. #2955
* In the repository list buffer, the columns that are supposed to list
unpushed and unpulled commit counts, were blank. #2960
* The command `magit-reflog-head' did not properly format reflog lines
for branch renaming events. 2a268e20
* The commands `magit-diff-show-or-scroll-down' and
`magit-diff-or-scroll-up' scrolled instead of updated the revision
or stash buffer, when that already showed the requested reference
but that reference no longer pointed at the same revision. #2966
This release also contains typo fixes and other documentation fixes.
Authors
-------
16 Jonas Bernoulli
4 Kyle Meyer
2 Alex Kost
1 Kévin Le Gouguec
1 Radon Rosborough
================================================
FILE: docs/RelNotes/2.10.2.txt
================================================
Magit v2.10.2 Release Notes
===========================
Changes since v2.10.1
---------------------
* The new command `git-rebase-noop' adds a noop action during a
rebase. It can be used to make git perform a rebase even if none
of the commits are selected. #2991
Fixes since v2.10.1
-------------------
* Cherry-picking a commit with multiple parents was not possible,
because "--mainline" was treated as a switch rather than an option,
and because of a too-strict assertion that only single-parent commits
can be cherry-picked. #2978
* `magit-abbrev-length' mishandled two edge cases, returning 0 when
called within an empty repository or outside of a repository.
077740f5
* A bug fix in the last release broke the visit-file functionality in
diff buffers displayed while committing. #2988
* Diff buffers did not recognize "rev^-n" as a short-hand for
"rev^n..rev" (new in Git v2.11), resulting in the buffer header
incorrectly indicating that the diff was between "rev^-n" and the
working tree. 293f0cc8
* In diff buffers created using the dotted range notation, the command
`magit-diff-visit-file' incorrectly swapped which revision was
visited for deleted and added lines. For example, with the range
"rev1..rev2", calling `magit-diff-visit-file' on a deleted line
visited the blob for rev2. c24f32cd
This release also contains other minor improvements, bug fixes, and
documentation fixes.
Authors
-------
10 Jonas Bernoulli
9 Kyle Meyer
1 Ben North
1 Fabian Wiget
1 Mark Oteiza
================================================
FILE: docs/RelNotes/2.10.3.txt
================================================
Magit v2.10.3 Release Notes
===========================
Changes since v2.10.2
---------------------
* The new command `magit-do-async-shell-command' opens the file at
point with `dired-do-async-shell-command'. "&" is now bound to
this command. #2992
Fixes since v2.10.2
-------------------
* The command `magit-bisect-run' now uses a shell to run the command
entered in response to the "Enter shell command" prompt. #3001
* Discarding a renamed file failed if the original file was within a
directory that no longer existed. #2998
* When inserting information about a rebase in progress into the
status buffer, "exec" lines were treated as a commit, leading to an
error. #3002
* The command `magit-blame' failed in blob-visiting buffers if the
corresponding file no longer exists in the HEAD or the index.
* The command `magit-remote-add' asked whether to set the new remote
as the `remote.pushDefault', when that variable is already set and
and it was configured not to ask in that case. 4f565039
This release also contains typo fixes and documentation improvements.
Authors
-------
10 Jonas Bernoulli
2 Kyle Meyer
1 Basil L. Contovounesios
1 Damien Cassou
1 Duianto Vebotci
1 Noam Postavsky
================================================
FILE: docs/RelNotes/2.11.0.txt
================================================
Magit v2.11.0 Release Notes
===========================
Released 13th September 2017 by Jonas Bernoulli.
I am pleased to announce the release of Magit version 2.11.0,
representing 303 commits by 26 contributors over six months.
Also see https://emacsair.me/2017/09/12/magit-2.11.
Changes since v2.10.3
---------------------
* The popup `magit-remote-popup' now exposes the `-f' switch for `git
remote add', which allows the user to control whether information
from the remote is fetched after the remote is added. The default
behavior is still to fetch after adding a remote (i.e., the switch
is enabled by default). #2997
* Added option `magit-list-refs-sortby' to allow more control over the
order of refs in prompts. #2872
* The Magit wrappers around the default Emacs completion functions now
override the default behavior of alphabetically sorting choices when
displaying them in the "*Completions*" buffer. In repositories with
many release tags, the new behavior prevents completion prompts from
being dominated by version tags instead of branch names. #2925
* The commands `magit-git-command', `magit-git-command-topdir',
`magit-shell-command', and `magit-shell-command-topdir' now use
`read-shell-command' to read the command and a shell to run it.
Packages like `pcmpl-git' and `bash-completion' can now be used
to get command-line completion when using these commands. #2951
* The commands `magit-git-command' and `magit-git-command-topdir' can
now call arbitrary commands. The initial-value when reading the
command is "git ", and you can remove that to call something else.
#2951
* Added option `magit-shell-command-verbose-prompt'. #2951
* The function `magit-branch-or-commit-at-point' now offers the
appropriate default choice in a `magit-merge-preview-mode' buffer
and in blob-visiting buffers. #3039, #3066
* On Travis tests are now run against all supported Emacs releases, as
well as against snapshots of the `master' and `emacs-25' branches.
#3046
* Added command `magit-debug-git-executable'. #3044
* Added new function `magit-display-file-buffer-other-window' to be
used as `magit-display-file-buffer-function'.
* Added `--mainline' switch to `magit-revert-popup'. #3018
* Added `magit-file-checkout' to `magit-reset-popup'. #3052
* When a revision is shown from a log buffer, the revision buffer now
inherits the file restriction of the log buffer. #3056
* Added new command `magit-diff-toggle-file-filter'. #3062
* Added new option `magit-use-sticky-arguments' that provides more
control over how diff and log commands reuse arguments from existing
buffers. #3074
* Added imenu support in log, revision, and status buffers. #3022
* Added command `magit-abort-dwim` to abort the current operation.
Depending on the context, this will abort a merge, a rebase, a
patch application, a cherry-pick, a revert, or a bisect. #3017
* The command `magit-clone' now suggests a directory name that more
closely follows `git clone' when no directory is given. #3079
* The commands `magit-subtree-add', `magit-subtree-pull', and
`magit-subtree-push' now offer more completion candidates. #3081
* The log buffer now shows the line range restriction (i.e., `-L'
argument) in its header. #3075
* Added new functions `magit-repolist-column-branches' and
`magit-repolist-column-stashes', which insert the count of branches
and stashes into submodules and repository list buffers. By default
they are used in submodule lists but not in the repository list.
* Text inside brackets in commit messages (including when shown in a
log) are now highlighted using face `magit-keyword'.
* Invocations of git are cached over the whole body of
`magit-run-git', not just during the status buffer refresh. This
should make staging and unstaging slightly faster. #3096
* When reading a value for the `--reuse-message' option, the popup
`magit-commit-popup' now prompts with all ref names, offering
`ORIG_HEAD' as the default if it exists. #3110
* Added bookmark support in status, refs, log, reflog, stashes,
cherry, diff, revision, stash, and submodule-list buffers. #3113
* Added new function `magit-insert-modules', a wrapper around the
existing `magit-insert-modules-*' functions. Also added options
`magit-module-sections-hook' and `magit-module-sections-nested',
to allow tuning the behavior of this function. #3141
* Renamed function `magit-insert-submodules' to
`magit-insert-modules-overview' for consistency with other
`magit-insert-modules-*' functions. #3141
* Inserting module sections is much faster now. #3141
* Added `--no-verify' switch to `magit-rebase-popup'. #3144
* The `--no-verify' switch in `magit-commit-popup' is now bound to "h"
instead of "n" for consistency with `magit-push-popup' and
`magit-rebase-popup'. #3144
* Added support for the file "EDIT_DESCRIPTION", which is used instead
of "BRANCH_DESCRIPTION" for editing a branch's description as of Git
2.13.0. #3149
Fixes since v2.10.3
-------------------
* Rebasing was sometimes interrupted by an error about the index lock
already being held. This happened because VC asynchronously checks
for files with conflict, which involved using a git command that
grabs the lock. Magit now redefines that VC command to use a git
command that does not grab the lock. #2708, debbugs#21559
* Adding an untracked subdirectory as a submodule failed if a remote
was not configured for the subdirectory repository. #3047
* Parsing the log buffer failed if the log displayed a ref that
contained parentheses in its name. #3028
* Parsing the `git show' and `git log' output for a signed commit
failed with the Git variable `log.showSignature' enabled. #3061
* When deleting the current branch, `magit-branch-delete' did not ask
for confirmation in some cases. #3058
* When using a non-standard `magit-display-file-buffer-function' that
does not select the window used to display the buffer, then the
point in that window was not adjusted. #3082
* `git-rebase-mode' did wrongly assume that there is no space after
the comment character in action lines that are commented out. #3085
* The command `magit-show-commit' mistakenly displayed a tag's commit
when point was on a branch with the same name. #3098
* The command `magit-log-buffer-file' miscalculated line numbers from
the region. #3075
* Staging a link failed when it points to a repository.
* When setting the upstream of a branch that isn't the current branch,
the user was asked what branch to use as the upstream of the current
branch anyway, even though the correct branch would then be modified.
* When deleting a branch that is merged into the current branch but
not into its own upstream branch, then the user was not offered to
force the deletion, causing it to fail. #3107
* With `find-file-visit-truename' set to a non-nil value, the commands
`magit-status' and `magit-init' failed to detect when their
directory argument was a symlink that resolved to the output of
`magit-toplevel'. #3115
* Using an url instead of a remote name as `branch.<name>.remote' was
not properly supported, causing issues when trying to pull or push.
#3116
* The log margin displayed invalid information for cherries. #3163
This release also contains the fixes described in the v2.10.{1,2,3}
release notes, as well as other minor improvements, bug fixes, typo
fixes, and documentation fixes.
Authors
-------
148 Jonas Bernoulli
93 Kyle Meyer
15 Damien Cassou
15 Noam Postavsky
5 Basil L. Contovounesios
3 Justin Guenther
2 Alex Kost
2 Duianto Vebotci
2 Radon Rosborough
2 Štěpán Němec
1 Adam Benanti
1 Allen Li
1 Ben North
1 Erik Anderson
1 Eyal Lotem
1 Fabian Wiget
1 Ioan-Adrian Ratiu
1 Jeremy Meng
1 Justin Burkett
1 Justin Thomas
1 Kévin Le Gouguec
1 Marc Sherry
1 Mark Karpov
1 Mark Oteiza
1 Sean Whitton
1 Yuri Khan
================================================
FILE: docs/RelNotes/2.12.0.txt
================================================
Magit v2.12.0 Release Notes
===========================
Released 29th March 2018 by Jonas Bernoulli.
I am pleased to announce the release of Magit version 2.12.0,
representing 610 commits by 30 contributors over six months.
Also see https://emacsair.me/2018/03/29/magit-2.12.
Upcoming breaking changes
-------------------------
* An upcoming release will remove support for older versions of Emacs.
It isn't yet certain in what Magit release that will happen and what
the new minimal version of Emacs will be. You should consider to
update to the latest Emacs release now, or at least to v25.1, which
was released one and a half years ago.
* Likewise support for older versions of Git is going to be removed.
You should update to at least v2.4, which was released almost three
years ago. Older releases don't get security updates anymore, which
is another reason to update.
* The option `magit-no-confirm-default' has been demoted to a variable
and will be removed in v2.13.0. Please migrate your customizations
to the new option `magit-dwim-selection'. #3232
Changes since v2.11.0
---------------------
* Added new commands `magit-previous-line' and `magit-next-line' as
substitutes for `previous-line' and `next-line'. Magit's selection
mechanism is based on the region but selects an area that is larger
than the region. This causes shift-selection to select two lines on
the first invocation when using the vanilla commands. On section
headings and inside hunk bodies the new magit-specific variants
don't move point on the first invocation and thereby they only
select a single section or line. Which inconsistency you prefer
is a matter of preference. #2912
To use the Magit-specific variants add this to your init file:
(define-key magit-mode-map [remap previous-line] 'magit-previous-line)
(define-key magit-mode-map [remap next-line] 'magit-next-line)
* The command `magit-refs-popup' now remembers arguments and they are
displayed in the header-line of `magit-refs-mode' buffers. The popup
command still invokes the default action by default when invoked from
another buffer, but when invoked from a `magit-refs-mode' buffer it
now shows the popup. #2898
* The module overview section now shows a hash for modules that don't
have a tag and column alignment is optimized. #3160
* The diff that is being displayed while committing learned about a
few more special cases. #3095
* Added new command `magit-branch-or-checkout' as a potential
substitute for `magit-checkout'. Setup instructions can be found in
the manual. #3104
* Added new customizable options `magit-log-highlight-keywords' and
`magit-diff-highlight-keywords', which control whether text inside
brackets is highlighted in magit-log and magit-diff buffers
respectively. #3190
* When the names of Magit buffers are not uniquified then their names
now end with an asterisk. When the `uniquify' package is used, then
that still is not possible due to limitations in that package. #2841
* When selecting a fixup target then the log graph, which makes it
less likely that you attempt to modify a merged commit, which would
result in the merges being lost when rebasing. c0209c74d
* Added the existing commands `magit-blame' and `magit-blob-next' to
the `magit-file-popup' popup.
* Added new command `magit-blame-reverse'. See the updated manual
for information on how to best use this and other blaming commands.
#3055
* Keywords in brackets are now being highlighted in `magit-refs-mode'
and `git-rebase-mode' buffers, and the headers of `magit-status-mode'
buffers, like they already were in logs. #3179
* Added new variable `magit-buffer-lock-functions' to support
third-party packages in creating Magit-like buffers. #3191
* Improve padding of head-line and add new faces `magit-header-line-key'
and `magit-header-line-log-select'. #3194
* When a stash has a note attached to it, then show it in the
`magit-stash-mode' buffer. aff2fba8f
* Added new command `magit-rebase-remove-commit' to the rebase popup.
* The remote popup can now be used to set various remote related
variables. #3165
* Added new commands `magit-patch-apply' and `magit-patch-apply-popup'.
The latter is available from inside `magit-am-popup' ("w"). #2940
* Added new command `magit-patch-save' for saving a diff into a patch
file. In diff buffers it is bound to "C-x C-w". #2950
* Added new command `magit-stash-branch-here', which — unlike the
existing `magit-stash-branch' — creates a branch that starts at
the current HEAD instead of at the commit that was current when
the stash was created. #2935
* Added new command `magit-dired-log' intended to be bound in
`dired-mode-map'. #3011
* The list of rebase actions displayed in the status buffer now also
shows "exec" actions. #3003
* While it exists, the stash created by `git rebase --autostash' is
now also displayed in the list of stashes. #3146
* When the current branch has no upstream or when all commits have
already been pushed there, then the status buffer now shows
`magit-log-section-commit-count' recent commits. If you previously
used `magit-insert-unpulled-from-upstream-or-recent', then remove
that from `magit-status-sections-hook', as it is an obsolete alias
for `magit-insert-unpulled-from-upstream' now. #3227
* When switching between showing "Unmerged into <upstream>" and
"Recent commits", preserve the visibility of that section.
gitextract_u4e35y6x/
├── .dir-locals.el
├── .elpaignore
├── .github/
│ ├── CONTRIBUTING.md
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.md
│ │ └── config.yml
│ ├── PULL_REQUEST_TEMPLATE
│ └── workflows/
│ ├── compile.yml
│ ├── manual.yml
│ ├── stats.yml
│ └── test.yml
├── .gitignore
├── .mailmap
├── CHANGELOG
├── LICENSE
├── Makefile
├── README.md
├── default.mk
├── docs/
│ ├── .orgconfig
│ ├── AUTHORS.md
│ ├── BACKERS.md
│ ├── Makefile
│ ├── RelNotes/
│ │ ├── 0.5.1.txt
│ │ ├── 0.6.1.txt
│ │ ├── 0.7.0.txt
│ │ ├── 0.8.0.txt
│ │ ├── 0.8.1.txt
│ │ ├── 0.8.2.txt
│ │ ├── 1.0.0.txt
│ │ ├── 1.1.0.txt
│ │ ├── 1.1.1.txt
│ │ ├── 1.1.2.txt
│ │ ├── 1.2.0.txt
│ │ ├── 1.2.1.txt
│ │ ├── 1.2.2.txt
│ │ ├── 1.4.0.txt
│ │ ├── 1.4.1.txt
│ │ ├── 1.4.2.txt
│ │ ├── 2.1.0.txt
│ │ ├── 2.10.0.txt
│ │ ├── 2.10.1.txt
│ │ ├── 2.10.2.txt
│ │ ├── 2.10.3.txt
│ │ ├── 2.11.0.txt
│ │ ├── 2.12.0.txt
│ │ ├── 2.12.1.txt
│ │ ├── 2.13.0.txt
│ │ ├── 2.13.1.txt
│ │ ├── 2.2.0.txt
│ │ ├── 2.2.1.txt
│ │ ├── 2.2.2.txt
│ │ ├── 2.3.0.txt
│ │ ├── 2.3.1.txt
│ │ ├── 2.4.0.txt
│ │ ├── 2.4.1.txt
│ │ ├── 2.5.0.txt
│ │ ├── 2.6.0.txt
│ │ ├── 2.6.1.txt
│ │ ├── 2.6.2.txt
│ │ ├── 2.7.0.txt
│ │ ├── 2.8.0.txt
│ │ ├── 2.9.0.txt
│ │ ├── 2.90.0.org
│ │ ├── 2.90.1.org
│ │ ├── 3.0.0.org
│ │ ├── 3.1.0.org
│ │ ├── 3.2.0.org
│ │ ├── 3.2.1.org
│ │ ├── 3.3.0.org
│ │ └── 4.0.0.org
│ ├── htmlxref.cnf
│ ├── magit-section.org
│ └── magit.org
├── git-hooks/
│ ├── fallthrough
│ ├── post-commit
│ ├── post-merge
│ └── post-rewrite
├── lisp/
│ ├── Makefile
│ ├── git-commit.el
│ ├── git-rebase.el
│ ├── magit-apply.el
│ ├── magit-autorevert.el
│ ├── magit-base.el
│ ├── magit-bisect.el
│ ├── magit-blame.el
│ ├── magit-bookmark.el
│ ├── magit-branch.el
│ ├── magit-bundle.el
│ ├── magit-clone.el
│ ├── magit-commit.el
│ ├── magit-core.el
│ ├── magit-diff.el
│ ├── magit-dired.el
│ ├── magit-ediff.el
│ ├── magit-extras.el
│ ├── magit-fetch.el
│ ├── magit-files.el
│ ├── magit-git.el
│ ├── magit-gitignore.el
│ ├── magit-log.el
│ ├── magit-margin.el
│ ├── magit-merge.el
│ ├── magit-mode.el
│ ├── magit-notes.el
│ ├── magit-patch.el
│ ├── magit-process.el
│ ├── magit-pull.el
│ ├── magit-push.el
│ ├── magit-reflog.el
│ ├── magit-refs.el
│ ├── magit-remote.el
│ ├── magit-repos.el
│ ├── magit-reset.el
│ ├── magit-section.el
│ ├── magit-sequence.el
│ ├── magit-sparse-checkout.el
│ ├── magit-stash.el
│ ├── magit-status.el
│ ├── magit-submodule.el
│ ├── magit-subtree.el
│ ├── magit-tag.el
│ ├── magit-transient.el
│ ├── magit-wip.el
│ ├── magit-worktree.el
│ └── magit.el
└── test/
├── Makefile
└── magit-tests.el
Condensed preview — 126 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (2,356K chars).
[
{
"path": ".dir-locals.el",
"chars": 488,
"preview": "((nil\n (indent-tabs-mode . nil))\n (emacs-lisp-mode\n (checkdoc-allow-quoting-nil-and-t . t)\n (lisp-indent-local-overri"
},
{
"path": ".elpaignore",
"chars": 96,
"preview": ".dir-locals.el\n.elpaignore\n.github\n.mailmap\nLICENSE\nMakefile\ndefault.mk\ndocs\nlisp/Makefile\ntest\n"
},
{
"path": ".github/CONTRIBUTING.md",
"chars": 855,
"preview": "Magit has many users and very few maintainers, so we kindly ask to read\nthe appropriate guidelines before getting in con"
},
{
"path": ".github/ISSUE_TEMPLATE/bug_report.md",
"chars": 2414,
"preview": "---\ntitle: \nname: 🪳 Report a bug\nabout: Report a defect. Do not use this for support requests and feature suggestions.\nn"
},
{
"path": ".github/ISSUE_TEMPLATE/config.yml",
"chars": 1296,
"preview": "blank_issues_enabled: false\ncontact_links:\n - name: \"⁉️ Unsure if this is a bug, suggestion or support request 👉 please"
},
{
"path": ".github/PULL_REQUEST_TEMPLATE",
"chars": 2554,
"preview": "=================================================================\nPlease use your own words.\n==========================="
},
{
"path": ".github/workflows/compile.yml",
"chars": 234,
"preview": "name: Compile\non: [push, pull_request]\njobs:\n compile:\n name: Compile\n uses: | # zizmor: ignore[unpinned-uses] sa"
},
{
"path": ".github/workflows/manual.yml",
"chars": 333,
"preview": "name: Manual\non:\n push:\n branches: main\n tags: \"v[0-9]+.[0-9]+.[0-9]+\"\njobs:\n manual:\n name: Manual\n uses:"
},
{
"path": ".github/workflows/stats.yml",
"chars": 342,
"preview": "name: Statistics\non:\n push:\n branches: main\n schedule:\n - cron: '3 13 * * 1'\njobs:\n stats:\n name: Statistics"
},
{
"path": ".github/workflows/test.yml",
"chars": 222,
"preview": "name: Test\non: [push, pull_request]\njobs:\n test:\n name: Test\n uses: | # zizmor: ignore[unpinned-uses] same mainta"
},
{
"path": ".gitignore",
"chars": 300,
"preview": "/config.mk\n/docs/*.html\n/docs/*.info\n/docs/*.pdf\n/docs/*.texi\n/docs/.revdesc\n/docs/dir\n/docs/stats/\n/lisp/*-autoloads.el"
},
{
"path": ".mailmap",
"chars": 4474,
"preview": "Alex Dunn <adunn@ucsb.edu> <dunn.alex@gmail.com>\nAlex Ott <alexott@gmail.com> <ott@flash.lan>\nAllen Li <darkfeline@feles"
},
{
"path": "CHANGELOG",
"chars": 23198,
"preview": "# -*- mode: org -*-\n* v4.5.0 2026-01-01\n\n- Removed support for loading Magit extensions from \".git/config\".\n Please "
},
{
"path": "LICENSE",
"chars": 35149,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
},
{
"path": "Makefile",
"chars": 4844,
"preview": "-include config.mk\ninclude default.mk\n\n## ###################################################################\n\n.PHONY: l"
},
{
"path": "README.md",
"chars": 6379,
"preview": "<div align=\"center\"><img src=\"https://magit.vc/assets/magit-168x200px.png\"/></div>\n<h2 align=\"center\">A Git Porcelain in"
},
{
"path": "default.mk",
"chars": 7129,
"preview": "TOP := $(dir $(lastword $(MAKEFILE_LIST)))\n\nDOMAIN ?= magit.vc\n\nPKG = magit\nPKGS = magit magit-section\n\n## User options"
},
{
"path": "docs/.orgconfig",
"chars": 1575,
"preview": "# -*- mode:org -*-\n# Copyright (C) 2021-2026 Jonas Bernoulli\n# SPDX-License-Identifier: GPL-3.0-or-later\n# URL: https://"
},
{
"path": "docs/AUTHORS.md",
"chars": 6944,
"preview": "The following people have contributed to Magit.\nFor statistics see https://stats.magit.vc/magit/authors.html.\n\nAuthors\n-"
},
{
"path": "docs/BACKERS.md",
"chars": 23563,
"preview": "Thanks to your contributions and enthusiastic support\nthe Magit [crowdfunding campaign][1] was a huge success!\n\nA specia"
},
{
"path": "docs/Makefile",
"chars": 6508,
"preview": "-include ../config.mk\ninclude ../default.mk\n\n.PHONY: install clean AUTHORS.md stats\n\n## Build ##########################"
},
{
"path": "docs/RelNotes/0.5.1.txt",
"chars": 184,
"preview": "Magit v0.5.1 Release Notes\n==========================\n\nThis is the first release of Magit. Enjoy!\n\nReleased 14 August 2"
},
{
"path": "docs/RelNotes/0.6.1.txt",
"chars": 506,
"preview": "Magit v0.6.1 Release Notes\n==========================\n\nReleased 16 October 2008 by Marius Vollmer.\n\nChanges since v0.5.1"
},
{
"path": "docs/RelNotes/0.7.0.txt",
"chars": 2145,
"preview": "Magit v0.7.0 Release Notes\n==========================\n\nReleased 8 March 2009 by Marius Vollmer.\n\nChanges since v0.6.1\n--"
},
{
"path": "docs/RelNotes/0.8.0.txt",
"chars": 1498,
"preview": "Magit v0.8.0 Release Notes\n==========================\n\nReleased 7 May 2010 by Phil Jackson.\n\nChanges since v0.7.0\n------"
},
{
"path": "docs/RelNotes/0.8.1.txt",
"chars": 647,
"preview": "Magit v0.8.1 Release Notes\n==========================\n\nReleased 10 June 2010 by Phil Jackson.\n\nChanges since v0.8.0\n----"
},
{
"path": "docs/RelNotes/0.8.2.txt",
"chars": 544,
"preview": "Magit v0.8.2 Release Notes\n==========================\n\nReleased 10 July 2010 by Phil Jackson.\n\nChanges since v0.8.1\n----"
},
{
"path": "docs/RelNotes/1.0.0.txt",
"chars": 2344,
"preview": "Magit v1.0.0 Release Notes\n==========================\n\nReleased 23 March 2011 by Phil Jackson.\n\nChanges since v0.8.2\n---"
},
{
"path": "docs/RelNotes/1.1.0.txt",
"chars": 2702,
"preview": "Magit v1.1.0 Release Notes\n==========================\n\nReleased 23 December 2011 by Yann Hodique.\n\nChanges since v1.0.0\n"
},
{
"path": "docs/RelNotes/1.1.1.txt",
"chars": 528,
"preview": "Magit v1.1.1 Release Notes\n==========================\n\nReleased 14 January 2012 by Yann Hodique.\n\nChanges since v1.1.0\n-"
},
{
"path": "docs/RelNotes/1.1.2.txt",
"chars": 671,
"preview": "Magit v1.1.2 Release Notes\n==========================\n\nReleased 23 September 2012 by Yann Hodique.\n\nChanges since v1.1.1"
},
{
"path": "docs/RelNotes/1.2.0.txt",
"chars": 1746,
"preview": "Magit v1.2.0 Release Notes\n==========================\n\nReleased 23 September 2012 by Yann Hodique.\n\nChanges since v1.1.2"
},
{
"path": "docs/RelNotes/1.2.1.txt",
"chars": 301,
"preview": "Magit v1.2.1 Release Notes\n==========================\n\nReleased 23 May 2014 by Jonas Bernoulli.\n\nChanges since v1.2.0\n--"
},
{
"path": "docs/RelNotes/1.2.2.txt",
"chars": 363,
"preview": "Magit v1.2.2 Release Notes\n==========================\n\nReleased 23 October 2014 by Jonas Bernoulli.\n\nChanges since v1.2."
},
{
"path": "docs/RelNotes/1.4.0.txt",
"chars": 8444,
"preview": "Magit v1.4.0 Release Notes\n==========================\n\nReleased 1 April 2015 by Jonas Bernoulli.\n\nThis release sits in t"
},
{
"path": "docs/RelNotes/1.4.1.txt",
"chars": 835,
"preview": "Magit v1.4.1 Release Notes\n==========================\n\nReleased 12 April 2015 by Jonas Bernoulli.\n\nThis is a bugfix rele"
},
{
"path": "docs/RelNotes/1.4.2.txt",
"chars": 514,
"preview": "Magit v1.4.2 Release Notes\n==========================\n\nReleased 8 June 2015 by Jonas Bernoulli.\n\nThis is a bugfix releas"
},
{
"path": "docs/RelNotes/2.1.0.txt",
"chars": 20000,
"preview": "Magit v2.1.0 Release Notes\n==========================\n\nReleased 1 July 2015 by Jonas Bernoulli.\n\nThis release marks the "
},
{
"path": "docs/RelNotes/2.10.0.txt",
"chars": 3030,
"preview": "Magit v2.10.0 Release Notes\n===========================\n\nReleased 4 January 2017 by Jonas Bernoulli.\n\nWe are pleased to "
},
{
"path": "docs/RelNotes/2.10.1.txt",
"chars": 2012,
"preview": "Magit v2.10.1 Release Notes\n===========================\n\nChanges since v2.10.0\n---------------------\n\n* The command `ido"
},
{
"path": "docs/RelNotes/2.10.2.txt",
"chars": 1561,
"preview": "Magit v2.10.2 Release Notes\n===========================\n\nChanges since v2.10.1\n---------------------\n\n* The new command "
},
{
"path": "docs/RelNotes/2.10.3.txt",
"chars": 1263,
"preview": "Magit v2.10.3 Release Notes\n===========================\n\nChanges since v2.10.2\n---------------------\n\n* The new command "
},
{
"path": "docs/RelNotes/2.11.0.txt",
"chars": 8113,
"preview": "Magit v2.11.0 Release Notes\n===========================\n\nReleased 13th September 2017 by Jonas Bernoulli.\n\nI am pleased "
},
{
"path": "docs/RelNotes/2.12.0.txt",
"chars": 27413,
"preview": "Magit v2.12.0 Release Notes\n===========================\n\nReleased 29th March 2018 by Jonas Bernoulli.\n\nI am pleased to a"
},
{
"path": "docs/RelNotes/2.12.1.txt",
"chars": 298,
"preview": "Magit v2.12.1 Release Notes\n===========================\n\nFixes since v2.12.0\n-------------------\n\n* Magit 2.12.0 depende"
},
{
"path": "docs/RelNotes/2.13.0.txt",
"chars": 4287,
"preview": "Magit v2.13.0 Release Notes\n===========================\n\nReleased 2nd June 2018 by Jonas Bernoulli.\n\nI am pleased to ann"
},
{
"path": "docs/RelNotes/2.13.1.txt",
"chars": 1126,
"preview": "Magit v2.13.1 Release Notes\n===========================\n\nFixes since v2.13.0\n-------------------\n\n* The prompt used by `"
},
{
"path": "docs/RelNotes/2.2.0.txt",
"chars": 9360,
"preview": "Magit v2.2.0 Release Notes\n==========================\n\nReleased 16 August 2015 by Jonas Bernoulli.\n\nWe are pleased to an"
},
{
"path": "docs/RelNotes/2.2.1.txt",
"chars": 1200,
"preview": "Magit v2.2.1 Release Notes\n==========================\n\nReleased 24 August 2015 by Jonas Bernoulli.\n\nThis is a bugfix rel"
},
{
"path": "docs/RelNotes/2.2.2.txt",
"chars": 1493,
"preview": "Magit v2.2.2 Release Notes\n==========================\n\nReleased 3 September 2015 by Jonas Bernoulli.\n\nThis is a bugfix r"
},
{
"path": "docs/RelNotes/2.3.0.txt",
"chars": 11269,
"preview": "Magit v2.3.0 Release Notes\n==========================\n\nReleased 28 October 2015 by Jonas Bernoulli.\n\nWe are pleased to a"
},
{
"path": "docs/RelNotes/2.3.1.txt",
"chars": 934,
"preview": "Magit v2.3.1 Release Notes\n==========================\n\nReleased 11 November 2015 by Jonas Bernoulli.\n\nThis is a bugfix r"
},
{
"path": "docs/RelNotes/2.4.0.txt",
"chars": 6087,
"preview": "Magit v2.4.0 Release Notes\n==========================\n\nReleased 18 January 2016 by Jonas Bernoulli.\n\nWe are pleased to a"
},
{
"path": "docs/RelNotes/2.4.1.txt",
"chars": 793,
"preview": "Magit v2.4.1 Release Notes\n==========================\n\nUpdates since v2.4.0\n--------------------\n\n* Added new utility fu"
},
{
"path": "docs/RelNotes/2.5.0.txt",
"chars": 5097,
"preview": "Magit v2.5.0 Release Notes\n==========================\n\nReleased 30 January 2016 by Jonas Bernoulli.\n\nWe are pleased to a"
},
{
"path": "docs/RelNotes/2.6.0.txt",
"chars": 5132,
"preview": "Magit v2.6.0 Release Notes\n==========================\n\nReleased 29 March 2016 by Jonas Bernoulli.\n\nWe are pleased to ann"
},
{
"path": "docs/RelNotes/2.6.1.txt",
"chars": 1154,
"preview": "Magit v2.6.1 Release Notes\n==========================\n\nFixes since v2.6.0\n------------------\n\n* When a submodule is manu"
},
{
"path": "docs/RelNotes/2.6.2.txt",
"chars": 1669,
"preview": "Magit v2.6.2 Release Notes\n==========================\n\nChanges since v2.6.1\n--------------------\n\n* Added new section in"
},
{
"path": "docs/RelNotes/2.7.0.txt",
"chars": 2981,
"preview": "Magit v2.7.0 Release Notes\n==========================\n\nReleased 19 May 2016 by Jonas Bernoulli.\n\nWe are pleased to annou"
},
{
"path": "docs/RelNotes/2.8.0.txt",
"chars": 4352,
"preview": "Magit v2.8.0 Release Notes\n==========================\n\nReleased 21 August 2016 by Jonas Bernoulli.\n\nWe are pleased to an"
},
{
"path": "docs/RelNotes/2.9.0.txt",
"chars": 19107,
"preview": "Magit v2.9.0 Release Notes\n==========================\n\nReleased 7 December 2016 by Jonas Bernoulli.\n\nWe are pleased to a"
},
{
"path": "docs/RelNotes/2.90.0.org",
"chars": 17715,
"preview": "* Magit v2.90.0 Release Notes\n\nReleased 8th November 2018 by Jonas Bernoulli.\n\nI am pleased to announce the release of M"
},
{
"path": "docs/RelNotes/2.90.1.org",
"chars": 1140,
"preview": "* Magit v2.90.1 Release Notes\n** Changes since v2.90.0\n\n- Added ~bug-reference-mode~ to ~git-commit-setup-hook~. e19e8f"
},
{
"path": "docs/RelNotes/3.0.0.org",
"chars": 26890,
"preview": "* Magit v3.0.0 Release Notes\n\nReleased 25th May 2021 by Jonas Bernoulli.\n\nI am pleased to announce the release of Magit "
},
{
"path": "docs/RelNotes/3.1.0.org",
"chars": 1815,
"preview": "* Magit v3.1.0 Release Notes\n\nReleased 1st July 2021 by Jonas Bernoulli.\n\nI am pleased to announce the release of Magit "
},
{
"path": "docs/RelNotes/3.2.0.org",
"chars": 2950,
"preview": "* Magit v3.2.0 Release Notes\n\nReleased 1st August 2021 by Jonas Bernoulli.\n\nI am pleased to announce the release of Magi"
},
{
"path": "docs/RelNotes/3.2.1.org",
"chars": 445,
"preview": "* Magit v3.2.1 Release Notes\n\nReleased 6st August 2021 by Jonas Bernoulli.\n\nI am pleased to announce the release of Magi"
},
{
"path": "docs/RelNotes/3.3.0.org",
"chars": 5344,
"preview": "* Magit v3.3.0 Release Notes\n\nReleased 4th October 2021 by Jonas Bernoulli.\n\nI am pleased to announce the release of Mag"
},
{
"path": "docs/RelNotes/4.0.0.org",
"chars": 30657,
"preview": "* Magit v4.0.0 Release Notes\n\nReleased 8th August 2024 by Jonas Bernoulli.\n\nI am pleased to announce the release of Magi"
},
{
"path": "docs/htmlxref.cnf",
"chars": 993,
"preview": "# https://www.gnu.org/software/texinfo/manual/texinfo/html_node/HTML-Xref-Configuration.html\n\nEMACS = https://www.gnu.or"
},
{
"path": "docs/magit-section.org",
"chars": 12598,
"preview": "#+title: Magit-Section Developer Manual\n:PREAMBLE:\n#+author: Jonas Bernoulli\n#+email: emacs.magit@jonas.bernoulli.dev\n#+"
},
{
"path": "docs/magit.org",
"chars": 381899,
"preview": "#+title: Magit User Manual\n:PREAMBLE:\n#+author: Jonas Bernoulli\n#+email: emacs.magit@jonas.bernoulli.dev\n#+date: 2015-{{"
},
{
"path": "git-hooks/fallthrough",
"chars": 117,
"preview": "#!/usr/bin/env bash\n\nhook=\"$SHADOWED_GITHOOK_DIRECTORY/$(basename $0)\"\n\nif [[ -x \"$hook\" ]]\nthen\n \"$hook\" \"$@\"\nfi\n"
},
{
"path": "git-hooks/post-commit",
"chars": 315,
"preview": "#!/usr/bin/env bash\n\nif [[ \"$INSIDE_EMACS\" == *magit ]]\nthen\n for arg in \"$@\"; do args+=\"\\\"$arg\\\"\"; done\n $GIT_EDI"
},
{
"path": "git-hooks/post-merge",
"chars": 314,
"preview": "#!/usr/bin/env bash\n\nif [[ \"$INSIDE_EMACS\" == *magit ]]\nthen\n for arg in \"$@\"; do args+=\"\\\"$arg\\\"\"; done\n $GIT_EDI"
},
{
"path": "git-hooks/post-rewrite",
"chars": 316,
"preview": "#!/usr/bin/env bash\n\nif [[ \"$INSIDE_EMACS\" == *magit ]]\nthen\n for arg in \"$@\"; do args+=\"\\\"$arg\\\"\"; done\n $GIT_EDI"
},
{
"path": "lisp/Makefile",
"chars": 4873,
"preview": "-include ../config.mk\ninclude ../default.mk\n\n## ###################################################################\n\n.PH"
},
{
"path": "lisp/git-commit.el",
"chars": 50166,
"preview": ";;; git-commit.el --- Edit Git commit messages -*- lexical-binding:t; coding:utf-8 -*-\n\n;; Copyright (C) 2008-2026 The "
},
{
"path": "lisp/git-rebase.el",
"chars": 36215,
"preview": ";;; git-rebase.el --- Edit Git rebase files -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Con"
},
{
"path": "lisp/magit-apply.el",
"chars": 34745,
"preview": ";;; magit-apply.el --- Apply Git diffs -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Contribu"
},
{
"path": "lisp/magit-autorevert.el",
"chars": 11400,
"preview": ";;; magit-autorevert.el --- Revert buffers when files in repository change -*- lexical-binding:t -*-\n\n;; Copyright (C) "
},
{
"path": "lisp/magit-base.el",
"chars": 50510,
"preview": ";;; magit-base.el --- Early birds -*- lexical-binding:t; coding:utf-8 -*-\n\n;; Copyright (C) 2008-2026 The Magit Project"
},
{
"path": "lisp/magit-bisect.el",
"chars": 12644,
"preview": ";;; magit-bisect.el --- Bisect support for Magit -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Projec"
},
{
"path": "lisp/magit-blame.el",
"chars": 39745,
"preview": ";;; magit-blame.el --- Blame support for Magit -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project "
},
{
"path": "lisp/magit-bookmark.el",
"chars": 5611,
"preview": ";;; magit-bookmark.el --- Bookmarks for Magit buffers -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit P"
},
{
"path": "lisp/magit-branch.el",
"chars": 43047,
"preview": ";;; magit-branch.el --- Branch support -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Contribu"
},
{
"path": "lisp/magit-bundle.el",
"chars": 5894,
"preview": ";;; magit-bundle.el --- Bundle support for Magit -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Projec"
},
{
"path": "lisp/magit-clone.el",
"chars": 14881,
"preview": ";;; magit-clone.el --- Clone a repository -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Contr"
},
{
"path": "lisp/magit-commit.el",
"chars": 35764,
"preview": ";;; magit-commit.el --- Create Git commits -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Cont"
},
{
"path": "lisp/magit-core.el",
"chars": 4556,
"preview": ";;; magit-core.el --- Core functionality -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Contri"
},
{
"path": "lisp/magit-diff.el",
"chars": 162829,
"preview": ";;; magit-diff.el --- Inspect Git diffs -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Contrib"
},
{
"path": "lisp/magit-dired.el",
"chars": 4358,
"preview": ";;; magit-dired.el --- Dired support for Magit -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project "
},
{
"path": "lisp/magit-ediff.el",
"chars": 24675,
"preview": ";;; magit-ediff.el --- Ediff extension for Magit -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Projec"
},
{
"path": "lisp/magit-extras.el",
"chars": 33888,
"preview": ";;; magit-extras.el --- Additional functionality for Magit -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Ma"
},
{
"path": "lisp/magit-fetch.el",
"chars": 6979,
"preview": ";;; magit-fetch.el --- Download objects and refs -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Projec"
},
{
"path": "lisp/magit-files.el",
"chars": 30647,
"preview": ";;; magit-files.el --- Finding files -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Contributo"
},
{
"path": "lisp/magit-git.el",
"chars": 130413,
"preview": ";;; magit-git.el --- Git functionality -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Contribu"
},
{
"path": "lisp/magit-gitignore.el",
"chars": 8027,
"preview": ";;; magit-gitignore.el --- Intentionally untracked files -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magi"
},
{
"path": "lisp/magit-log.el",
"chars": 86414,
"preview": ";;; magit-log.el --- Inspect Git history -*- lexical-binding:t; coding:utf-8 -*-\n\n;; Copyright (C) 2008-2026 The Magit "
},
{
"path": "lisp/magit-margin.el",
"chars": 10416,
"preview": ";;; magit-margin.el --- Margins in Magit buffers -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Projec"
},
{
"path": "lisp/magit-merge.el",
"chars": 12603,
"preview": ";;; magit-merge.el --- Merge functionality -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Cont"
},
{
"path": "lisp/magit-mode.el",
"chars": 65403,
"preview": ";;; magit-mode.el --- Create and refresh Magit buffers -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit "
},
{
"path": "lisp/magit-notes.el",
"chars": 7281,
"preview": ";;; magit-notes.el --- Notes support -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Contributo"
},
{
"path": "lisp/magit-patch.el",
"chars": 12409,
"preview": ";;; magit-patch.el --- Creating and applying patches -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Pr"
},
{
"path": "lisp/magit-process.el",
"chars": 58417,
"preview": ";;; magit-process.el --- Process functionality -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project "
},
{
"path": "lisp/magit-pull.el",
"chars": 6782,
"preview": ";;; magit-pull.el --- Update local objects and refs -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Pro"
},
{
"path": "lisp/magit-push.el",
"chars": 16908,
"preview": ";;; magit-push.el --- Update remote objects and refs -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Pr"
},
{
"path": "lisp/magit-reflog.el",
"chars": 7565,
"preview": ";;; magit-reflog.el --- Inspect ref history -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Con"
},
{
"path": "lisp/magit-refs.el",
"chars": 34882,
"preview": ";;; magit-refs.el --- Listing references -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Contri"
},
{
"path": "lisp/magit-remote.el",
"chars": 16376,
"preview": ";;; magit-remote.el --- Transfer Git commits -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Co"
},
{
"path": "lisp/magit-repos.el",
"chars": 22777,
"preview": ";;; magit-repos.el --- Listing repositories -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Con"
},
{
"path": "lisp/magit-reset.el",
"chars": 5641,
"preview": ";;; magit-reset.el --- Reset functionality -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Cont"
},
{
"path": "lisp/magit-section.el",
"chars": 110673,
"preview": ";;; magit-section.el --- Sections for read-only buffers -*- lexical-binding:t; coding:utf-8 -*-\n\n;; Copyright (C) 2008-"
},
{
"path": "lisp/magit-sequence.el",
"chars": 47894,
"preview": ";;; magit-sequence.el --- History manipulation in Magit -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit"
},
{
"path": "lisp/magit-sparse-checkout.el",
"chars": 6200,
"preview": ";;; magit-sparse-checkout.el --- Sparse checkout support for Magit -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-202"
},
{
"path": "lisp/magit-stash.el",
"chars": 28716,
"preview": ";;; magit-stash.el --- Stash support for Magit -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project "
},
{
"path": "lisp/magit-status.el",
"chars": 34003,
"preview": ";;; magit-status.el --- The grand overview -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Cont"
},
{
"path": "lisp/magit-submodule.el",
"chars": 31650,
"preview": ";;; magit-submodule.el --- Submodule support for Magit -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit "
},
{
"path": "lisp/magit-subtree.el",
"chars": 7106,
"preview": ";;; magit-subtree.el --- Subtree support for Magit -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Proj"
},
{
"path": "lisp/magit-tag.el",
"chars": 10372,
"preview": ";;; magit-tag.el --- Tag functionality -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Contribu"
},
{
"path": "lisp/magit-transient.el",
"chars": 10103,
"preview": ";;; magit-transient.el --- Support for transients -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Proje"
},
{
"path": "lisp/magit-wip.el",
"chars": 16233,
"preview": ";;; magit-wip.el --- Commit snapshots to work-in-progress refs -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 Th"
},
{
"path": "lisp/magit-worktree.el",
"chars": 13964,
"preview": ";;; magit-worktree.el --- Worktree support -*- lexical-binding:t -*-\n\n;; Copyright (C) 2008-2026 The Magit Project Cont"
},
{
"path": "lisp/magit.el",
"chars": 31353,
"preview": ";;; magit.el --- A Git porcelain inside Emacs -*- lexical-binding:t; coding:utf-8 -*-\n\n;; Copyright (C) 2008-2026 The M"
},
{
"path": "test/Makefile",
"chars": 449,
"preview": "-include ../config.mk\ninclude ../default.mk\n\nLOAD_PATH += -L ../lisp\n\ntest: lisp\n\t@printf \" Testing...\\n\"\n\t@$(EMACS_BAT"
},
{
"path": "test/magit-tests.el",
"chars": 24248,
"preview": ";;; magit-tests.el --- Tests for Magit -*- lexical-binding:t; coding:utf-8 -*-\n\n;; Copyright (C) 2008-2026 The Magit Pr"
}
]
About this extraction
This page contains the full source code of the magit/magit GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 126 files (2.2 MB), approximately 571.8k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.