aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2025-07-01Release version 4.3.7v4.3.7Jonas Bernoulli
2025-06-30make authors: Show no diff if no commit was createdJonas Bernoulli
2025-06-16manual: Fix minor typoJacob Ilsø
2025-06-16magit-show-process-buffer-hint: New optionJonas Bernoulli
2025-06-16manual: Correct and refine information about process outputJonas Bernoulli
2025-06-10Clarify that commands run magit-section-movement-hook explicitlyJonas Bernoulli
Closes #5394.
2025-06-01Release version 4.3.6v4.3.6Jonas Bernoulli
2025-05-31Bring back a variant of delayed hunk refinementJonas Bernoulli
The old variant broke with [1: 95ee9d8c51], which cannot be fixed simply be reverting that commit, because it was in preparation of subsequent changes, which heavily refactored section highlighting making it both simpler and more generic, and also to improve performance. Delayed hunk refinement conflicts with the former, and due to the latter it might not be necessary anymore. This commit does not fully restore the old behavior. Previously delayed refinement meant that only the current hunk was ever refined; when another section became current, the refinement of the previously current section was removed again. Now, once a hunk has been refined, it remains refined, until the buffer is refreshed. The reason any form of delayed hunk refinement was implemented in the first place, was to avoid the upfront cost of completely refining a large diff. I never considered this a desirable feature; just a kludge that was sadly necessary for performance reasons. IMO the new behavior is an improvement; though always refining all hunks is of course even better, unless it is too slow of course. Closes #5385. 1: 2025-04-26 95ee9d8c5102bc5619f0e2c6d50104cae17b2009 magit-diff-paint-hunk: Only refine if actually painting
2025-05-31git-rebase-{alter,squish}: New commandsJonas Bernoulli
2025-05-14Release version 4.3.5v4.3.5Jonas Bernoulli
2025-05-13Release version 4.3.4v4.3.4Jonas Bernoulli
2025-05-13AUTHORS.md: Update list of contributorsJonas Bernoulli
2025-05-09make: Do not needlessly quote every comma in generated texi filesJonas Bernoulli
This counters Org commit 39264d3d41213085502dc0c2572f50855ea587a1.
2025-05-01Release version 4.3.3v4.3.3Jonas Bernoulli
2025-04-19magit-diff-visit-file: Remove inaccurate sentence from documentationRichard Sent
Co-authored-by: Jonas Bernoulli <jonas@bernoul.li>
2025-04-19Regenerate manualJonas Bernoulli
2025-04-15git-rebase-kill-line: If the line is commented then uncomment itJonas Bernoulli
2025-04-01Release version 4.3.2v4.3.2Jonas Bernoulli
2025-04-01Regenerate manualJonas Bernoulli
2025-03-31magit-rebase-autosquash: With a prefix allow selecting beginningJonas Bernoulli
2025-03-25magit-merge-into: Rename to magit-merge-dissolve and change bindingJonas Bernoulli
Use the term "dissolve" because that makes it clear that the branch that is being merged is also deleted afterwards. Also change the key binding in the `magit-merge' menu, to keep it mnemonic. At least the latter was planned since [1: 4c096921fd]. Do not define `magit-merge-into' as an obsolete alias, since that would prolong the period during which some users would by take by surprise. Re #4386. 1: 2021-07-01 4c096921fda97ebdff656a35a257910fca9e5aad magit-merge: Change magit-merge-into's description
2025-03-02Release version 4.3.1v4.3.1Jonas Bernoulli
2025-03-01AUTHORS.md: Update list of contributorsJonas Bernoulli
2025-02-23changelog: Fix typoJonas Bernoulli
2025-02-23changelog: Fix typosJonas Bernoulli
2025-02-10magit-diff-wash-submodule: Use magit-format-file-functionJonas Bernoulli
2025-02-08magit-format-file-function: New optionJonas Bernoulli
Closes #5308.
2025-02-04Release version 4.3.0v4.3.0Jonas Bernoulli
2025-02-04Bump copyright yearsJonas Bernoulli
2025-02-03Drop dependency on DashJonas Bernoulli
2025-02-03Complete dependency listsJonas Bernoulli
2025-02-03manual: Update a pathJonas Bernoulli
2025-02-02manual: Drop a repeated paragraphKyle Meyer
2025-02-02manual: Fix a typoKyle Meyer
2025-02-01AUTHORS.md: Update list of contributorsJonas Bernoulli
2025-01-30Speed up Git's part in listing files in status bufferJonas Bernoulli
In [1: 83d89ee5bb] we did speed up Magit's part in this task, but also removed optimization used to speed up Git's part. Bring those back. Also respect all local values of `status.showUntrackedFiles' again. Closes #5298. 1: 2025-01-27 83d89ee5bb1c488544bae60d52f7ee1987b6449e Speed up and simplify listing files in status buffer
2025-01-27AUTHORS.md: Update list of contributorsJonas Bernoulli
2025-01-27Speed up and simplify listing files in status bufferJonas Bernoulli
2025-01-27manual: Split up "Status Sections" sectionJonas Bernoulli
2025-01-19manual: Fix pastoJonas Bernoulli
2025-01-17manual: Fix introduction to committingJonas Bernoulli
We do call `git commit' with arguments, just not with `--message'.
2025-01-17manual: Categorize "Options used by commit commands" sectionJonas Bernoulli
2025-01-17Improve documentation about commit commandsJonas Bernoulli
2025-01-17Rearrange definitions and documentation of commit commandsJonas Bernoulli
Rearrange their definitions and the order in which they are described in the manual, to better mirror their new arrangement in the menu.
2025-01-17magit-commit-{alter,revise}: New commandsJonas Bernoulli
- Bind "A" to `magit-commit-alter'. Previously that was bound to `magit-commit-augment', but the new command is more similar to `magit-commit-amend', whose binding is "a". `amend' and `alter' do the approximately same thing, but the former is limited to the "HEAD" commit. Additionally `alter' needs changes (else use `revise'). - Bind "W" to `magit-commit-revise' because "w" is bound to `magit-commit-reword' and these two are also HEAD/any variants. - Bind "n" to `magit-commit-augment'. The mnemonic being that this adds a "note", which we later have to take into account when writing the final commit message. - Bind "d" to `magit-commit-reshelve' because "n" is now taken. Use "d" because it changes dates. This command is disabled by default. - In the menu, arrange the variants in a way that hopefully makes these relations more obvious. Unfortunately this is not possible without leaving some "table cells" empty.
2025-01-17magit-commit-create: No longer amend with a prefix argumentJonas Bernoulli
Several fine commands dedicated to amending exist, and have been preferable to this prefix argument for many years now.
2025-01-04magit-status-show-untracked-files: New optionJonas Bernoulli
2025-01-04magit-insert-untracked-files: Fix use of status.showUntrackedFilesJonas Bernoulli
Previously the meanings of "normal" and "all" were inverted. Now "all" means "show all untracked" files, just like for `git status'. "normal" means "show untracked files and directories", but while in the case of `git status' that means that individual non-top-level files are never shown, in our case directory sections can be expanded on demand to show them when needed.
2025-01-02magit-stash--apply-1: Improve presentation of fallback methodsJonas Bernoulli
Be more verbose about the available fallback methods and also let the user abort. Re #5253.
2025-01-01Release version 4.2.0v4.2.0Jonas Bernoulli