aboutsummaryrefslogtreecommitdiff
path: root/Documentation/magit.org
AgeCommit message (Collapse)Author
2021-12-16Rename Documentation/ to docs/Jonas Bernoulli
2021-12-08manual: No longer use dissolvable sectionsJonas Bernoulli
These sections existed because I am not fully happy with how `org-cycle' works, which I should deal with by patching that function or writing a substitute.
2021-12-05manual: Fix Evil URLFrédéric Giquel
2021-12-03magit-cherry-branch: Support using detached HEAD as sourceJonas Bernoulli
Closes #4534.
2021-11-28manual: Correct face nameJonas Bernoulli
2021-11-08manual: Use Org macrosJonas Bernoulli
2021-10-04Release version 3.3.0v3.3.0Jonas Bernoulli
2021-10-01manual: No longer depend on the ox-extra packageJonas Bernoulli
Instead of ox-extra's "ignored sections" use ox-texinfo+'s new "dissolvable headlines".
2021-09-13Support invoking smerge from magit buffersJonas Bernoulli
Closes #4458.
2021-09-10magit-git-debug, magit-process-extreme-logging: Improve documentationJonas Bernoulli
2021-09-10magit-commit-diff-inhibit-same-window: New optionJonas Bernoulli
Different users need mutually exclusive kludges, therefore we need an option. See #4132 for details.
2021-09-08manual: Fix typo from previous commitKyle Meyer
2021-09-07magit-show-refs: Add magit-refs-set-show-commit-countJonas Bernoulli
2021-08-20Add support for "git bundle"Jonas Bernoulli
Closes #4392.
2021-08-20manual: Update key bindingsJonas Bernoulli
2021-08-16magit-remote-git-executable: Mention tramp-remote-pathJonas Bernoulli
2021-08-13Add several commands for switching to existing Magit buffersJonas Bernoulli
Closes #4259.
2021-08-10Fix typosJonas Bernoulli
2021-08-06Release version 3.2.1v3.2.1Jonas Bernoulli
2021-08-01Release version 3.2.0v3.2.0Jonas Bernoulli
2021-07-21magit-define-global-key-bindings: Improve documentationJonas Bernoulli
Closes #4446.
2021-07-20manual: Improve "Git Executable"Jonas Bernoulli
2021-07-20manual: RegenerateJonas Bernoulli
2021-07-20magit-git-executable: Default to absolute path on macOSJonas Bernoulli
2021-07-20magit-remote-git-executable: New optionJonas Bernoulli
2021-07-20magit-process-git: New functionJonas Bernoulli
2021-07-08manual: Fix typoKyle Meyer
2021-07-07magit-{repo,module}list-columns: Document compact styleJonas Bernoulli
Also adjust `magit-repolist-insert-count' slightly to better support this by displaying "+" instead of "ty" for numbers that don't fit in a single digit. Some users might want something fancier in which case they can redefine this function. For example, the following implementation displays an empty string instead of "0": (defun magit-repolist-insert-count (n spec) (let ((str (number-to-string n))) (if (= (cadr (assq :width spec)) 1) (cond ((> n 9) "+") ((= n 0) " ") (t str)) (magit--propertize-face str (if (> n 0) 'bold 'shadow)))))
2021-07-02magit-branch-maybe-adjust-upstream: Upstream must also existJonas Bernoulli
2021-07-02Release version 3.1.1v3.1.1Jonas Bernoulli
2021-07-01Release version 3.1.0v3.1.0Jonas Bernoulli
2021-06-25magit-log-move-to-revision: New commandJonas Bernoulli
Closes #4418.
2021-06-25manual: Add two FAQ entries from wikiJonas Bernoulli
2021-06-19manual: Remove entry for magit-run-git-with-logfileKyle Meyer
magit-run-git-with-logfile was dropped in 56354898 (Run "git bisect" asynchronously, 2019-04-20).
2021-06-20manual: Fix typoJonas Bernoulli
2021-06-19manual: use ox-texinfo's notoc supportJonas Bernoulli
Instead of ox-texinfo+'s obsolete support.
2021-05-25Release version 3.0.0v3.0.0Jonas Bernoulli
2021-04-06manual: Point auto-fetchers to push.useForceIfIncludesKyle Meyer
Re: https://github.com/magit/magit/discussions/4355
2021-03-12manual: Fix typopancho horrillo
2021-03-07magit-branch-delete: Confirm deletion on remoteJonas Bernoulli
Closes #4339.
2021-03-07manual: CosmeticsJonas Bernoulli
2021-02-28manual: Document remaining commit optionsJonas Bernoulli
2021-02-27manual: RegenerateJonas Bernoulli
2021-02-27manual: Fix typoIngmar Sittl
2021-02-27manual: Improve docs concerning magit-after-save-refresh-statusIlya Grigoriev
2021-02-08manual: Update description of magit-branch-and-checkoutJonas Bernoulli
2021-01-24magit-diff-extra-stat-arguments: New optionJonas Bernoulli
Closes #4295. Closes #4297. Suggested-by: Leandro Cardoso <leandrocardoso@gmail.com>
2021-01-17manual: Update documentation of magit-run-git-with-inputVladimir Panteleev
2021-01-17manual: Fix magit-start-git signatureVladimir Panteleev
2021-01-03Bump copyright yearsJonas Bernoulli