aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2023-02-04manual: magit-bury-buffer-function: Fix outdated informationJonas Bernoulli
2023-01-25manual: Extend macOS performance notesChristopher Carlile
According to https://superuser.com/questions/1452865, and my own profiling, the native mac `git' executable is much faster than the one installed using `nix' or `brew'. Using the native executable as `magit-git-executable' results in much faster response times from Magit.
2023-01-23manual: Fix small mistakeJonas Bernoulli
Closes #4856.
2023-01-17manual: Fix miscount and add commaEugene Mikhaylov
2023-01-14Fix applying changes over Tramp from WindowsJonas Bernoulli
`process-send-eof' seems to be broken in this case, breaking commands that receive input (most noticeably and notably staging and other apply variants). So just use (process-send-string process ""). Hopefully this kludge doesn't break anything else. It would be better if someone investigated the issue and fixed it properly. See https://debbugs.gnu.org/cgi/bugreport.cgi?bug=43226 Closes #3624.
2023-01-06AUTHORS.md: Update list of contributorsJonas Bernoulli
2023-01-06make: Dependabot is a bot, not an authorJonas Bernoulli
2023-01-04magit-{branch-or-,}commit-at-point: Consider removal blame chunksKyle Meyer
magit-commit-at-point and magit-branch-or-commit-at-point extract the commit from a blame chunk with (magit-current-blame-chunk 'addition t) For a magit-blame-reverse chunk, 'git blame' is called again to get an 'addition' chunk, leading to the returned commit confusingly not matching the chunk's commit. A downstream consequence of this is that magit-show-commit displays the addition commit for a removal chunk (while magit-diff-show-or-scroll-up shows the expected removal commit, because it doesn't rely on magit-branch-or-commit-at-point). As of 4b8eab3a (magit-{branch-or,}commit-at-point: Only use blame chunk when blaming, 2022-05-27), magit-commit-at-point and magit-branch-or-commit-at-point invoke magit-current-blame-chunk only when Blame mode is enabled, so it's safe to assume that there is an existing blame chunk. Rely on it to get the appropriate commit. Fixes #4834.
2023-01-03Bump copyright yearsJonas Bernoulli
2022-11-27Use new version string format for unreleased revisionsJonas Bernoulli
"N-git" < "N"; but "N.50-git" > "N".
2022-11-25AUTHORS.md: Update list of contributorsJonas Bernoulli
2022-11-19make: Fix previous commitJonas Bernoulli
2022-11-19make: Explicitly specify output directory for makeinfo --htmlJonas Bernoulli
The default output directory differs between makeinfo versions.
2022-11-13Consider Git's exec path when searching for extensionsKyle Meyer
Commands that depend on optional third-party Git extensions use executable-find to check whether the extension is available. That misses the legitimate case where an extension is installed in Git's exec path rather than a directory in $PATH. Update these spots to call a new helper that looks in Git's exec path before calling executable-find. Note that the order is chosen to follow Git's precedence (though that doesn't matter for any of the current callers because they don't use the return value). Closes #4812.
2022-10-31git-rebase: Support update-ref actionKyle Meyer
This action is new in Git 2.38. Closes #4776.
2022-10-08AUTHORS.md: Update list of contributorsJonas Bernoulli
2022-10-05manual: Mention with-editor-filter-visit-hook in performance hintJonas Bernoulli
Closes #4773.
2022-10-05manual: Fix a typoJohannes Maier
2022-09-25magit-post-commit-hook: Fix variable reference in docsKyle Meyer
2022-09-18manual: Fix typohokomo
2022-08-31magit-clone-url-format: Use t as the default keyJonas Bernoulli
Like for cond et al.
2022-08-20Allow magit-clone-url-format to be more dynamicNacho Barrientos
This patch permits `magit-clone-url-format' to be represented as an alist mapping hostnames to URL formats. This way Magit can be configured to translate repository names into URLs when using servers that employ different URL schemes. The current value type (string) is kept for backwards compatibility.
2022-08-14manual: re-update link to 2.4 release blog postBen Zanin
2022-08-10make: Print message for texi targetJonas Bernoulli
2022-08-10manual: Use @insertcopyingJonas Bernoulli
2022-08-10manual: Use @insertcopyingJonas Bernoulli
2022-07-05manual: Fix command name for magit-toggle-git-debug entryKyle Meyer
Correct a copy-paste error from 2ed5a06d (magit-toggle-git-debug: New command, 2022-05-02). Fixes #4721.
2022-06-24Make magit-log-merged's number of shown commits configurableDaanturo
By setting magit-log-merged-commit-count.
2022-06-10relnotes: Fix typosKyle Meyer
2022-06-10Update release notesJonas Bernoulli
When I am undecided whether to mention a certain commit, then represent it with a line of the form "HASH SUMMARY" for now.
2022-06-03Update keybindings for transient args historyBen North
2022-05-31Update name of Apple's OSJonas Bernoulli
2022-05-31manual: Link to another FAQ about performanceJonas Bernoulli
2022-05-31manual: Update FAQ about performanceJonas Bernoulli
2022-05-27manual: Correct magit-branch-rename's key bindingJonas Bernoulli
2022-05-18manual: Fix typoKyle Meyer
2022-05-16magit-ediff-dwim-resolve-function: New optionJonas Bernoulli
2022-05-16magit-ediff-resolve-{all,rest}: Use file at pointJonas Bernoulli
2022-05-16magit-ediff-resolve-all: New commandJonas Bernoulli
2022-05-16magit-ediff-resolve: Rename to magit-ediff-resolve-restJonas Bernoulli
2022-05-03Fix documentation typosJonas Bernoulli
2022-05-03Fix a single typoJonas Bernoulli
But it sure was copied to a lot of places. ;P
2022-05-02magit-toggle-git-debug: New commandJonas Bernoulli
2022-05-02magit-git-debug: Extend documentationJonas Bernoulli
2022-04-29Update author, maintainer and contributor informationJonas Bernoulli
2022-04-28manual: Fix pastoJonas Bernoulli
Closes #4672.
2022-04-23AUTHORS.md: Drop email addressesJonas Bernoulli
2022-04-23AUTHORS.md: Update list of contributorsJonas Bernoulli
2022-04-22make: Right-align target verbsJonas Bernoulli
2022-03-31Fix typoJorge Israel Peña