config

Personal configuration.
git clone git://code.dwrz.net/config
Log | Files | Refs

magit-autoloads.el (86481B)


      1 ;;; magit-autoloads.el --- automatically extracted autoloads (do not edit)   -*- lexical-binding: t -*-
      2 ;; Generated by the `loaddefs-generate' function.
      3 
      4 ;; This file is part of GNU Emacs.
      5 
      6 ;;; Code:
      7 
      8 (add-to-list 'load-path (or (and load-file-name (directory-file-name (file-name-directory load-file-name))) (car load-path)))
      9 
     10 
     11 
     12 ;;; Generated autoloads from git-rebase.el
     13 
     14 (autoload 'git-rebase-current-line "git-rebase" "\
     15 Parse current line into a `git-rebase-action' instance.
     16 If the current line isn't recognized as a rebase line, an
     17 instance with all nil values is returned.")
     18 (autoload 'git-rebase-mode "git-rebase" "\
     19 Major mode for editing of a Git rebase file.
     20 
     21 Rebase files are generated when you run \"git rebase -i\" or run
     22 `magit-interactive-rebase'.  They describe how Git should perform
     23 the rebase.  See the documentation for git-rebase (e.g., by
     24 running \"man git-rebase\" at the command line) for details.
     25 
     26 (fn)" t)
     27 (defconst git-rebase-filename-regexp "/git-rebase-todo\\'")
     28 (add-to-list 'auto-mode-alist (cons git-rebase-filename-regexp #'git-rebase-mode))
     29 (register-definition-prefixes "git-rebase" '("git-rebase-" "magit-imenu--rebase-"))
     30 
     31 
     32 ;;; Generated autoloads from magit.el
     33 
     34 (defvar magit-define-global-key-bindings 'default "\
     35 Which set of key bindings to add to the global keymap, if any.
     36 
     37 This option controls which set of Magit key bindings, if any, may
     38 be added to the global keymap, even before Magit is first used in
     39 the current Emacs session.
     40 
     41 If the value is nil, no bindings are added.
     42 
     43 If `default', maybe add:
     44 
     45     C-x g     `magit-status'
     46     C-x M-g   `magit-dispatch'
     47     C-c M-g   `magit-file-dispatch'
     48 
     49 If `recommended', maybe add:
     50 
     51     C-x g     `magit-status'
     52     C-c g     `magit-dispatch'
     53     C-c f     `magit-file-dispatch'
     54 
     55     These bindings are strongly recommended, but we cannot use
     56     them by default, because the \"C-c <LETTER>\" namespace is
     57     strictly reserved for bindings added by the user.
     58 
     59 The bindings in the chosen set may be added when
     60 `after-init-hook' is run.  Each binding is added if, and only
     61 if, at that time no other key is bound to the same command,
     62 and no other command is bound to the same key.  In other words
     63 we try to avoid adding bindings that are unnecessary, as well
     64 as bindings that conflict with other bindings.
     65 
     66 Adding these bindings is delayed until `after-init-hook' is
     67 run to allow users to set the variable anywhere in their init
     68 file (without having to make sure to do so before `magit' is
     69 loaded or autoloaded) and to increase the likelihood that all
     70 the potentially conflicting user bindings have already been
     71 added.
     72 
     73 To set this variable use either `setq' or the Custom interface.
     74 Do not use the function `customize-set-variable' because doing
     75 that would cause Magit to be loaded immediately, when that form
     76 is evaluated (this differs from `custom-set-variables', which
     77 doesn't load the libraries that define the customized variables).
     78 
     79 Setting this variable has no effect if `after-init-hook' has
     80 already been run.")
     81 (custom-autoload 'magit-define-global-key-bindings "magit" t)
     82 (defun magit-maybe-define-global-key-bindings (&optional force) "\
     83 See variable `magit-define-global-key-bindings'." (when magit-define-global-key-bindings (let ((map (current-global-map))) (pcase-dolist (`(,key \, def) (cond ((eq magit-define-global-key-bindings 'recommended) '(("C-x g" . magit-status) ("C-c g" . magit-dispatch) ("C-c f" . magit-file-dispatch))) ('(("C-x g" . magit-status) ("C-x M-g" . magit-dispatch) ("C-c M-g" . magit-file-dispatch))))) (when (or force (not (or (lookup-key map (kbd key)) (where-is-internal def (make-sparse-keymap) t)))) (define-key map (kbd key) def))))))
     84 (if after-init-time (magit-maybe-define-global-key-bindings) (add-hook 'after-init-hook #'magit-maybe-define-global-key-bindings t))
     85  (autoload 'magit-dispatch "magit" nil t)
     86  (autoload 'magit-run "magit" nil t)
     87 (autoload 'magit-git-command "magit" "\
     88 Execute COMMAND asynchronously; display output.
     89 
     90 Interactively, prompt for COMMAND in the minibuffer. \"git \" is
     91 used as initial input, but can be deleted to run another command.
     92 
     93 With a prefix argument COMMAND is run in the top-level directory
     94 of the current working tree, otherwise in `default-directory'.
     95 
     96 (fn COMMAND)" t)
     97 (autoload 'magit-git-command-topdir "magit" "\
     98 Execute COMMAND asynchronously; display output.
     99 
    100 Interactively, prompt for COMMAND in the minibuffer. \"git \" is
    101 used as initial input, but can be deleted to run another command.
    102 
    103 COMMAND is run in the top-level directory of the current
    104 working tree.
    105 
    106 (fn COMMAND)" t)
    107 (autoload 'magit-shell-command "magit" "\
    108 Execute COMMAND asynchronously; display output.
    109 
    110 Interactively, prompt for COMMAND in the minibuffer.  With a
    111 prefix argument COMMAND is run in the top-level directory of
    112 the current working tree, otherwise in `default-directory'.
    113 
    114 (fn COMMAND)" t)
    115 (autoload 'magit-shell-command-topdir "magit" "\
    116 Execute COMMAND asynchronously; display output.
    117 
    118 Interactively, prompt for COMMAND in the minibuffer.  COMMAND
    119 is run in the top-level directory of the current working tree.
    120 
    121 (fn COMMAND)" t)
    122 (autoload 'magit-version "magit" "\
    123 Return the version of Magit currently in use.
    124 
    125 If optional argument PRINT-DEST is non-nil, also print the used
    126 versions of Magit, Transient, Git and Emacs to the output stream
    127 selected by that argument.  Interactively use the echo area, or
    128 with a prefix argument use the current buffer.  Additionally put
    129 the output in the kill ring.
    130 
    131 (fn &optional PRINT-DEST)" t)
    132 (register-definition-prefixes "magit" '("magit-"))
    133 
    134 
    135 ;;; Generated autoloads from magit-apply.el
    136 
    137 (autoload 'magit-stage-buffer-file "magit-apply" "\
    138 Stage all changes to the file being visited in the current buffer." t)
    139 (autoload 'magit-stage-file "magit-apply" "\
    140 Read one or more files and stage all changes in those files.
    141 With prefix argument FORCE, offer ignored files for completion.
    142 
    143 (fn FILES &optional FORCE)" t)
    144 (autoload 'magit-stage-modified "magit-apply" "\
    145 Stage all changes to files modified in the worktree.
    146 Stage all new content of tracked files and remove tracked files
    147 that no longer exist in the working tree from the index also.
    148 With a prefix argument also stage previously untracked (but not
    149 ignored) files.
    150 
    151 (fn &optional ALL)" t)
    152 (autoload 'magit-unstage-buffer-file "magit-apply" "\
    153 Unstage all changes to the file being visited in the current buffer." t)
    154 (autoload 'magit-unstage-file "magit-apply" "\
    155 Read one or more files and unstage all changes to those files.
    156 
    157 (fn FILES)" t)
    158 (autoload 'magit-unstage-all "magit-apply" "\
    159 Remove all changes from the staging area." t)
    160 (register-definition-prefixes "magit-apply" '("magit-"))
    161 
    162 
    163 ;;; Generated autoloads from magit-autorevert.el
    164 
    165 (put 'magit-auto-revert-mode 'globalized-minor-mode t)
    166 (defvar magit-auto-revert-mode (not (or global-auto-revert-mode noninteractive)) "\
    167 Non-nil if Magit-Auto-Revert mode is enabled.
    168 See the `magit-auto-revert-mode' command
    169 for a description of this minor mode.
    170 Setting this variable directly does not take effect;
    171 either customize it (see the info node `Easy Customization')
    172 or call the function `magit-auto-revert-mode'.")
    173 (custom-autoload 'magit-auto-revert-mode "magit-autorevert" nil)
    174 (autoload 'magit-auto-revert-mode "magit-autorevert" "\
    175 Toggle Auto-Revert mode in all buffers.
    176 With prefix ARG, enable Magit-Auto-Revert mode if ARG is positive; otherwise,
    177 disable it.
    178 
    179 If called from Lisp, toggle the mode if ARG is `toggle'.
    180 Enable the mode if ARG is nil, omitted, or is a positive number.
    181 Disable the mode if ARG is a negative number.
    182 
    183 Auto-Revert mode is enabled in all buffers where
    184 `magit-turn-on-auto-revert-mode-if-desired' would do it.
    185 
    186 See `auto-revert-mode' for more information on Auto-Revert mode.
    187 
    188 (fn &optional ARG)" t)
    189 (register-definition-prefixes "magit-autorevert" '("auto-revert-buffer" "magit-"))
    190 
    191 
    192 ;;; Generated autoloads from magit-base.el
    193 
    194 (autoload 'magit-emacs-Q-command "magit-base" "\
    195 Show a shell command that runs an uncustomized Emacs with only Magit loaded.
    196 See info node `(magit)Debugging Tools' for more information." t)
    197 (define-advice Info-follow-nearest-node (:around (fn &optional fork) gitman) (let ((node (Info-get-token (point) "\\*note[ 
    198 	]+" "\\*note[ 
    199 	]+\\([^:]*\\):\\(:\\|[ 
    200 	]*(\\)?"))) (if (and node (string-match "^(gitman)\\(.+\\)" node)) (pcase magit-view-git-manual-method ('info (funcall fn fork)) ('man (require 'man) (man (match-string 1 node))) ('woman (require 'woman) (woman (match-string 1 node))) (_ (user-error "Invalid value for `magit-view-git-manual-method'"))) (funcall fn fork))))
    201 (define-advice org-man-export (:around (fn link description format) gitman) (if (and (eq format 'texinfo) (string-prefix-p "git" link)) (string-replace "%s" link "
    202 @ifinfo
    203 @ref{%s,,,gitman,}.
    204 @end ifinfo
    205 @ifhtml
    206 @html
    207 the <a href=\"http://git-scm.com/docs/%s\">%s(1)</a> manpage.
    208 @end html
    209 @end ifhtml
    210 @iftex
    211 the %s(1) manpage.
    212 @end iftex
    213 ") (funcall fn link description format)))
    214 (register-definition-prefixes "magit-base" '("magit-"))
    215 
    216 
    217 ;;; Generated autoloads from magit-bisect.el
    218 
    219  (autoload 'magit-bisect "magit-bisect" nil t)
    220 (autoload 'magit-bisect-start "magit-bisect" "\
    221 Start a bisect session.
    222 
    223 Bisecting a bug means to find the commit that introduced it.
    224 This command starts such a bisect session by asking for a known
    225 good and a known bad commit.  To move the session forward use the
    226 other actions from the bisect transient command (\\<magit-status-mode-map>\\[magit-bisect]).
    227 
    228 (fn BAD GOOD ARGS)" t)
    229 (autoload 'magit-bisect-reset "magit-bisect" "\
    230 After bisecting, cleanup bisection state and return to original `HEAD'." t)
    231 (autoload 'magit-bisect-good "magit-bisect" "\
    232 While bisecting, mark the current commit as good.
    233 Use this after you have asserted that the commit does not contain
    234 the bug in question." t)
    235 (autoload 'magit-bisect-bad "magit-bisect" "\
    236 While bisecting, mark the current commit as bad.
    237 Use this after you have asserted that the commit does contain the
    238 bug in question." t)
    239 (autoload 'magit-bisect-mark "magit-bisect" "\
    240 While bisecting, mark the current commit with a bisect term.
    241 During a bisect using alternate terms, commits can still be
    242 marked with `magit-bisect-good' and `magit-bisect-bad', as those
    243 commands map to the correct term (\"good\" to --term-old's value
    244 and \"bad\" to --term-new's).  However, in some cases, it can be
    245 difficult to keep that mapping straight in your head; this
    246 command provides an interface that exposes the underlying terms." t)
    247 (autoload 'magit-bisect-skip "magit-bisect" "\
    248 While bisecting, skip the current commit.
    249 Use this if for some reason the current commit is not a good one
    250 to test.  This command lets Git choose a different one." t)
    251 (autoload 'magit-bisect-run "magit-bisect" "\
    252 Bisect automatically by running commands after each step.
    253 
    254 Unlike `git bisect run' this can be used before bisecting has
    255 begun.  In that case it behaves like `git bisect start; git
    256 bisect run'.
    257 
    258 (fn CMDLINE &optional BAD GOOD ARGS)" t)
    259 (register-definition-prefixes "magit-bisect" '("magit-"))
    260 
    261 
    262 ;;; Generated autoloads from magit-blame.el
    263 
    264  (autoload 'magit-blame-echo "magit-blame" nil t)
    265  (autoload 'magit-blame-addition "magit-blame" nil t)
    266  (autoload 'magit-blame-removal "magit-blame" nil t)
    267  (autoload 'magit-blame-reverse "magit-blame" nil t)
    268  (autoload 'magit-blame "magit-blame" nil t)
    269 (register-definition-prefixes "magit-blame" '("magit-"))
    270 
    271 
    272 ;;; Generated autoloads from magit-branch.el
    273 
    274  (autoload 'magit-branch "magit" nil t)
    275 (autoload 'magit-checkout "magit-branch" "\
    276 Checkout REVISION, updating the index and the working tree.
    277 If REVISION is a local branch, then that becomes the current
    278 branch.  If it is something else, then `HEAD' becomes detached.
    279 Checkout fails if the working tree or the staging area contain
    280 changes.
    281 
    282 (git checkout REVISION).
    283 
    284 (fn REVISION &optional ARGS)" t)
    285 (function-put 'magit-checkout 'interactive-only 'magit--checkout)
    286 (autoload 'magit-branch-create "magit-branch" "\
    287 Create BRANCH at branch or revision START-POINT.
    288 
    289 (fn BRANCH START-POINT)" t)
    290 (function-put 'magit-branch-create 'interactive-only 'magit-call-git)
    291 (autoload 'magit-branch-and-checkout "magit-branch" "\
    292 Create and checkout BRANCH at branch or revision START-POINT.
    293 
    294 (fn BRANCH START-POINT &optional ARGS)" t)
    295 (function-put 'magit-branch-and-checkout 'interactive-only 'magit-call-git)
    296 (autoload 'magit-branch-or-checkout "magit-branch" "\
    297 Hybrid between `magit-checkout' and `magit-branch-and-checkout'.
    298 
    299 Ask the user for an existing branch or revision.  If the user
    300 input actually can be resolved as a branch or revision, then
    301 check that out, just like `magit-checkout' would.
    302 
    303 Otherwise create and checkout a new branch using the input as
    304 its name.  Before doing so read the starting-point for the new
    305 branch.  This is similar to what `magit-branch-and-checkout'
    306 does.
    307 
    308 (fn ARG &optional START-POINT)" t)
    309 (function-put 'magit-branch-or-checkout 'interactive-only 'magit-call-git)
    310 (autoload 'magit-branch-checkout "magit-branch" "\
    311 Checkout an existing or new local branch.
    312 
    313 Read a branch name from the user offering all local branches and
    314 a subset of remote branches as candidates.  Omit remote branches
    315 for which a local branch by the same name exists from the list
    316 of candidates.  The user can also enter a completely new branch
    317 name.
    318 
    319 - If the user selects an existing local branch, then check that
    320   out.
    321 
    322 - If the user selects a remote branch, then create and checkout
    323   a new local branch with the same name.  Configure the selected
    324   remote branch as push target.
    325 
    326 - If the user enters a new branch name, then create and check
    327   that out, after also reading the starting-point from the user.
    328 
    329 In the latter two cases the upstream is also set.  Whether it is
    330 set to the chosen START-POINT or something else depends on the
    331 value of `magit-branch-adjust-remote-upstream-alist', just like
    332 when using `magit-branch-and-checkout'.
    333 
    334 (fn BRANCH &optional START-POINT)" t)
    335 (function-put 'magit-branch-checkout 'interactive-only 'magit-call-git)
    336 (autoload 'magit-branch-orphan "magit-branch" "\
    337 Create and checkout an orphan BRANCH with contents from revision START-POINT.
    338 
    339 (fn BRANCH START-POINT)" t)
    340 (autoload 'magit-branch-spinout "magit-branch" "\
    341 Create new branch from the unpushed commits.
    342 Like `magit-branch-spinoff' but remain on the current branch.
    343 If there are any uncommitted changes, then behave exactly like
    344 `magit-branch-spinoff'.
    345 
    346 (fn BRANCH &optional FROM)" t)
    347 (autoload 'magit-branch-spinoff "magit-branch" "\
    348 Create new branch from the unpushed commits.
    349 
    350 Create and checkout a new branch starting at and tracking the
    351 current branch.  That branch in turn is reset to the last commit
    352 it shares with its upstream.  If the current branch has no
    353 upstream or no unpushed commits, then the new branch is created
    354 anyway and the previously current branch is not touched.
    355 
    356 This is useful to create a feature branch after work has already
    357 began on the old branch (likely but not necessarily \"master\").
    358 
    359 If the current branch is a member of the value of option
    360 `magit-branch-prefer-remote-upstream' (which see), then the
    361 current branch will be used as the starting point as usual, but
    362 the upstream of the starting-point may be used as the upstream
    363 of the new branch, instead of the starting-point itself.
    364 
    365 If optional FROM is non-nil, then the source branch is reset
    366 to `FROM~', instead of to the last commit it shares with its
    367 upstream.  Interactively, FROM is only ever non-nil, if the
    368 region selects some commits, and among those commits, FROM is
    369 the commit that is the fewest commits ahead of the source
    370 branch.
    371 
    372 The commit at the other end of the selection actually does not
    373 matter, all commits between FROM and `HEAD' are moved to the new
    374 branch.  If FROM is not reachable from `HEAD' or is reachable
    375 from the source branch's upstream, then an error is raised.
    376 
    377 (fn BRANCH &optional FROM)" t)
    378 (autoload 'magit-branch-reset "magit-branch" "\
    379 Reset a branch to the tip of another branch or any other commit.
    380 
    381 When the branch being reset is the current branch, then do a
    382 hard reset.  If there are any uncommitted changes, then the user
    383 has to confirm the reset because those changes would be lost.
    384 
    385 This is useful when you have started work on a feature branch but
    386 realize it's all crap and want to start over.
    387 
    388 When resetting to another branch and a prefix argument is used,
    389 then also set the target branch as the upstream of the branch
    390 that is being reset.
    391 
    392 (fn BRANCH TO &optional SET-UPSTREAM)" t)
    393 (autoload 'magit-branch-delete "magit-branch" "\
    394 Delete one or multiple branches.
    395 
    396 If the region marks multiple branches, then offer to delete
    397 those, otherwise prompt for a single branch to be deleted,
    398 defaulting to the branch at point.
    399 
    400 Require confirmation when deleting branches is dangerous in some
    401 way.  Option `magit-no-confirm' can be customized to not require
    402 confirmation in certain cases.  See its docstring to learn why
    403 confirmation is required by default in certain cases or if a
    404 prompt is confusing.
    405 
    406 (fn BRANCHES &optional FORCE)" t)
    407 (autoload 'magit-branch-rename "magit-branch" "\
    408 Rename the branch named OLD to NEW.
    409 
    410 With a prefix argument FORCE, rename even if a branch named NEW
    411 already exists.
    412 
    413 If `branch.OLD.pushRemote' is set, then unset it.  Depending on
    414 the value of `magit-branch-rename-push-target' (which see) maybe
    415 set `branch.NEW.pushRemote' and maybe rename the push-target on
    416 the remote.
    417 
    418 (fn OLD NEW &optional FORCE)" t)
    419 (autoload 'magit-branch-shelve "magit-branch" "\
    420 Shelve a BRANCH.
    421 Rename \"refs/heads/BRANCH\" to \"refs/shelved/BRANCH\",
    422 and also rename the respective reflog file.
    423 
    424 (fn BRANCH)" t)
    425 (autoload 'magit-branch-unshelve "magit-branch" "\
    426 Unshelve a BRANCH
    427 Rename \"refs/shelved/BRANCH\" to \"refs/heads/BRANCH\",
    428 and also rename the respective reflog file.
    429 
    430 (fn BRANCH)" t)
    431  (autoload 'magit-branch-configure "magit-branch" nil t)
    432 (register-definition-prefixes "magit-branch" '("magit-"))
    433 
    434 
    435 ;;; Generated autoloads from magit-bundle.el
    436 
    437  (autoload 'magit-bundle "magit-bundle" nil t)
    438  (autoload 'magit-bundle-import "magit-bundle" nil t)
    439 (autoload 'magit-bundle-create-tracked "magit-bundle" "\
    440 Create and track a new bundle.
    441 
    442 (fn FILE TAG BRANCH REFS ARGS)" t)
    443 (autoload 'magit-bundle-update-tracked "magit-bundle" "\
    444 Update a bundle that is being tracked using TAG.
    445 
    446 (fn TAG)" t)
    447 (autoload 'magit-bundle-verify "magit-bundle" "\
    448 Check whether FILE is valid and applies to the current repository.
    449 
    450 (fn FILE)" t)
    451 (autoload 'magit-bundle-list-heads "magit-bundle" "\
    452 List the refs in FILE.
    453 
    454 (fn FILE)" t)
    455 (register-definition-prefixes "magit-bundle" '("magit-"))
    456 
    457 
    458 ;;; Generated autoloads from magit-clone.el
    459 
    460  (autoload 'magit-clone "magit-clone" nil t)
    461 (autoload 'magit-clone-regular "magit-clone" "\
    462 Create a clone of REPOSITORY in DIRECTORY.
    463 Then show the status buffer for the new repository.
    464 
    465 (fn REPOSITORY DIRECTORY ARGS)" t)
    466 (autoload 'magit-clone-shallow "magit-clone" "\
    467 Create a shallow clone of REPOSITORY in DIRECTORY.
    468 Then show the status buffer for the new repository.
    469 With a prefix argument read the DEPTH of the clone;
    470 otherwise use 1.
    471 
    472 (fn REPOSITORY DIRECTORY ARGS DEPTH)" t)
    473 (autoload 'magit-clone-shallow-since "magit-clone" "\
    474 Create a shallow clone of REPOSITORY in DIRECTORY.
    475 Then show the status buffer for the new repository.
    476 Exclude commits before DATE, which is read from the
    477 user.
    478 
    479 (fn REPOSITORY DIRECTORY ARGS DATE)" t)
    480 (autoload 'magit-clone-shallow-exclude "magit-clone" "\
    481 Create a shallow clone of REPOSITORY in DIRECTORY.
    482 Then show the status buffer for the new repository.
    483 Exclude commits reachable from EXCLUDE, which is a
    484 branch or tag read from the user.
    485 
    486 (fn REPOSITORY DIRECTORY ARGS EXCLUDE)" t)
    487 (autoload 'magit-clone-bare "magit-clone" "\
    488 Create a bare clone of REPOSITORY in DIRECTORY.
    489 Then show the status buffer for the new repository.
    490 
    491 (fn REPOSITORY DIRECTORY ARGS)" t)
    492 (autoload 'magit-clone-mirror "magit-clone" "\
    493 Create a mirror of REPOSITORY in DIRECTORY.
    494 Then show the status buffer for the new repository.
    495 
    496 (fn REPOSITORY DIRECTORY ARGS)" t)
    497 (autoload 'magit-clone-sparse "magit-clone" "\
    498 Clone REPOSITORY into DIRECTORY and create a sparse checkout.
    499 
    500 (fn REPOSITORY DIRECTORY ARGS)" t)
    501 (register-definition-prefixes "magit-clone" '("magit-"))
    502 
    503 
    504 ;;; Generated autoloads from magit-commit.el
    505 
    506  (autoload 'magit-commit "magit-commit" nil t)
    507 (autoload 'magit-commit-create "magit-commit" "\
    508 Create a new commit on `HEAD'.
    509 With a prefix argument, amend to the commit at `HEAD' instead.
    510 
    511 (git commit [--amend] ARGS)
    512 
    513 (fn &optional ARGS)" t)
    514 (autoload 'magit-commit-amend "magit-commit" "\
    515 Amend the last commit.
    516 
    517 (git commit --amend ARGS)
    518 
    519 (fn &optional ARGS)" t)
    520 (autoload 'magit-commit-extend "magit-commit" "\
    521 Amend the last commit, without editing the message.
    522 
    523 With a prefix argument keep the committer date, otherwise change
    524 it.  The option `magit-commit-extend-override-date' can be used
    525 to inverse the meaning of the prefix argument.
    526 
    527 (git commit --amend --no-edit)
    528 
    529 (fn &optional ARGS OVERRIDE-DATE)" t)
    530 (autoload 'magit-commit-reword "magit-commit" "\
    531 Reword the last commit, ignoring staged changes.
    532 
    533 With a prefix argument keep the committer date, otherwise change
    534 it.  The option `magit-commit-reword-override-date' can be used
    535 to inverse the meaning of the prefix argument.
    536 
    537 Non-interactively respect the optional OVERRIDE-DATE argument
    538 and ignore the option.
    539 
    540 (git commit --amend --only)
    541 
    542 (fn &optional ARGS OVERRIDE-DATE)" t)
    543 (autoload 'magit-commit-fixup "magit-commit" "\
    544 Create a fixup commit.
    545 
    546 With a prefix argument the target COMMIT has to be confirmed.
    547 Otherwise the commit at point may be used without confirmation
    548 depending on the value of option `magit-commit-squash-confirm'.
    549 
    550 (fn &optional COMMIT ARGS)" t)
    551 (autoload 'magit-commit-squash "magit-commit" "\
    552 Create a squash commit, without editing the squash message.
    553 
    554 With a prefix argument the target COMMIT has to be confirmed.
    555 Otherwise the commit at point may be used without confirmation
    556 depending on the value of option `magit-commit-squash-confirm'.
    557 
    558 If you want to immediately add a message to the squash commit,
    559 then use `magit-commit-augment' instead of this command.
    560 
    561 (fn &optional COMMIT ARGS)" t)
    562 (autoload 'magit-commit-augment "magit-commit" "\
    563 Create a squash commit, editing the squash message.
    564 
    565 With a prefix argument the target COMMIT has to be confirmed.
    566 Otherwise the commit at point may be used without confirmation
    567 depending on the value of option `magit-commit-squash-confirm'.
    568 
    569 (fn &optional COMMIT ARGS)" t)
    570 (autoload 'magit-commit-instant-fixup "magit-commit" "\
    571 Create a fixup commit targeting COMMIT and instantly rebase.
    572 
    573 (fn &optional COMMIT ARGS)" t)
    574 (autoload 'magit-commit-instant-squash "magit-commit" "\
    575 Create a squash commit targeting COMMIT and instantly rebase.
    576 
    577 (fn &optional COMMIT ARGS)" t)
    578 (autoload 'magit-commit-reshelve "magit-commit" "\
    579 Change the committer date and possibly the author date of `HEAD'.
    580 
    581 The current time is used as the initial minibuffer input and the
    582 original author or committer date is available as the previous
    583 history element.
    584 
    585 Both the author and the committer dates are changed, unless one
    586 of the following is true, in which case only the committer date
    587 is updated:
    588 - You are not the author of the commit that is being reshelved.
    589 - The command was invoked with a prefix argument.
    590 - Non-interactively if UPDATE-AUTHOR is nil.
    591 
    592 (fn DATE UPDATE-AUTHOR &optional ARGS)" t)
    593 (autoload 'magit-commit-absorb-modules "magit-commit" "\
    594 Spread modified modules across recent commits.
    595 
    596 (fn PHASE COMMIT)" t)
    597  (autoload 'magit-commit-absorb "magit-commit" nil t)
    598  (autoload 'magit-commit-autofixup "magit-commit" nil t)
    599 (register-definition-prefixes "magit-commit" '("magit-"))
    600 
    601 
    602 ;;; Generated autoloads from magit-diff.el
    603 
    604  (autoload 'magit-diff "magit-diff" nil t)
    605  (autoload 'magit-diff-refresh "magit-diff" nil t)
    606 (autoload 'magit-diff-dwim "magit-diff" "\
    607 Show changes for the thing at point.
    608 
    609 (fn &optional ARGS FILES)" t)
    610 (autoload 'magit-diff-range "magit-diff" "\
    611 Show differences between two commits.
    612 
    613 REV-OR-RANGE should be a range or a single revision.  If it is a
    614 revision, then show changes in the working tree relative to that
    615 revision.  If it is a range, but one side is omitted, then show
    616 changes relative to `HEAD'.
    617 
    618 If the region is active, use the revisions on the first and last
    619 line of the region as the two sides of the range.  With a prefix
    620 argument, instead of diffing the revisions, choose a revision to
    621 view changes along, starting at the common ancestor of both
    622 revisions (i.e., use a \"...\" range).
    623 
    624 (fn REV-OR-RANGE &optional ARGS FILES)" t)
    625 (autoload 'magit-diff-working-tree "magit-diff" "\
    626 Show changes between the current working tree and the `HEAD' commit.
    627 With a prefix argument show changes between the working tree and
    628 a commit read from the minibuffer.
    629 
    630 (fn &optional REV ARGS FILES)" t)
    631 (autoload 'magit-diff-staged "magit-diff" "\
    632 Show changes between the index and the `HEAD' commit.
    633 With a prefix argument show changes between the index and
    634 a commit read from the minibuffer.
    635 
    636 (fn &optional REV ARGS FILES)" t)
    637 (autoload 'magit-diff-unstaged "magit-diff" "\
    638 Show changes between the working tree and the index.
    639 
    640 (fn &optional ARGS FILES)" t)
    641 (autoload 'magit-diff-unmerged "magit-diff" "\
    642 Show changes that are being merged.
    643 
    644 (fn &optional ARGS FILES)" t)
    645 (autoload 'magit-diff-while-committing "magit-diff" "\
    646 While committing, show the changes that are about to be committed.
    647 While amending, invoking the command again toggles between
    648 showing just the new changes or all the changes that will
    649 be committed." t)
    650 (autoload 'magit-diff-buffer-file "magit-diff" "\
    651 Show diff for the blob or file visited in the current buffer.
    652 
    653 When the buffer visits a blob, then show the respective commit.
    654 When the buffer visits a file, then show the differences between
    655 `HEAD' and the working tree.  In both cases limit the diff to
    656 the file or blob." t)
    657 (autoload 'magit-diff-paths "magit-diff" "\
    658 Show changes between any two files on disk.
    659 
    660 (fn A B)" t)
    661 (autoload 'magit-show-commit "magit-diff" "\
    662 Visit the revision at point in another buffer.
    663 If there is no revision at point or with a prefix argument prompt
    664 for a revision.
    665 
    666 (fn REV &optional ARGS FILES MODULE)" t)
    667 (register-definition-prefixes "magit-diff" '("magit-"))
    668 
    669 
    670 ;;; Generated autoloads from magit-ediff.el
    671 
    672  (autoload 'magit-ediff "magit-ediff" nil)
    673 (autoload 'magit-ediff-resolve-all "magit-ediff" "\
    674 Resolve all conflicts in the FILE at point using Ediff.
    675 
    676 If there is no file at point or if it doesn't have any unmerged
    677 changes, then prompt for a file.
    678 
    679 See info node `(magit) Ediffing' for more information about this
    680 and alternative commands.
    681 
    682 (fn FILE)" t)
    683 (autoload 'magit-ediff-resolve-rest "magit-ediff" "\
    684 Resolve outstanding conflicts in the FILE at point using Ediff.
    685 
    686 If there is no file at point or if it doesn't have any unmerged
    687 changes, then prompt for a file.
    688 
    689 See info node `(magit) Ediffing' for more information about this
    690 and alternative commands.
    691 
    692 (fn FILE)" t)
    693 (autoload 'magit-ediff-stage "magit-ediff" "\
    694 Stage and unstage changes to FILE using Ediff.
    695 FILE has to be relative to the top directory of the repository.
    696 
    697 (fn FILE)" t)
    698 (autoload 'magit-ediff-compare "magit-ediff" "\
    699 Compare REVA:FILEA with REVB:FILEB using Ediff.
    700 
    701 FILEA and FILEB have to be relative to the top directory of the
    702 repository.  If REVA or REVB is nil, then this stands for the
    703 working tree state.
    704 
    705 If the region is active, use the revisions on the first and last
    706 line of the region.  With a prefix argument, instead of diffing
    707 the revisions, choose a revision to view changes along, starting
    708 at the common ancestor of both revisions (i.e., use a \"...\"
    709 range).
    710 
    711 (fn REVA REVB FILEA FILEB)" t)
    712 (autoload 'magit-ediff-dwim "magit-ediff" "\
    713 Compare, stage, or resolve using Ediff.
    714 This command tries to guess what file, and what commit or range
    715 the user wants to compare, stage, or resolve using Ediff.  It
    716 might only be able to guess either the file, or range or commit,
    717 in which case the user is asked about the other.  It might not
    718 always guess right, in which case the appropriate `magit-ediff-*'
    719 command has to be used explicitly.  If it cannot read the user's
    720 mind at all, then it asks the user for a command to run." t)
    721 (autoload 'magit-ediff-show-staged "magit-ediff" "\
    722 Show staged changes using Ediff.
    723 
    724 This only allows looking at the changes; to stage, unstage,
    725 and discard changes using Ediff, use `magit-ediff-stage'.
    726 
    727 FILE must be relative to the top directory of the repository.
    728 
    729 (fn FILE)" t)
    730 (autoload 'magit-ediff-show-unstaged "magit-ediff" "\
    731 Show unstaged changes using Ediff.
    732 
    733 This only allows looking at the changes; to stage, unstage,
    734 and discard changes using Ediff, use `magit-ediff-stage'.
    735 
    736 FILE must be relative to the top directory of the repository.
    737 
    738 (fn FILE)" t)
    739 (autoload 'magit-ediff-show-working-tree "magit-ediff" "\
    740 Show changes between `HEAD' and working tree using Ediff.
    741 FILE must be relative to the top directory of the repository.
    742 
    743 (fn FILE)" t)
    744 (autoload 'magit-ediff-show-commit "magit-ediff" "\
    745 Show changes introduced by COMMIT using Ediff.
    746 
    747 (fn COMMIT)" t)
    748 (autoload 'magit-ediff-show-stash "magit-ediff" "\
    749 Show changes introduced by STASH using Ediff.
    750 `magit-ediff-show-stash-with-index' controls whether a
    751 three-buffer Ediff is used in order to distinguish changes in the
    752 stash that were staged.
    753 
    754 (fn STASH)" t)
    755 (register-definition-prefixes "magit-ediff" '("magit-ediff-"))
    756 
    757 
    758 ;;; Generated autoloads from magit-extras.el
    759 
    760  (autoload 'magit-git-mergetool "magit-extras" nil t)
    761 (autoload 'magit-run-git-gui-blame "magit-extras" "\
    762 Run `git gui blame' on the given FILENAME and COMMIT.
    763 Interactively run it for the current file and the `HEAD', with a
    764 prefix or when the current file cannot be determined let the user
    765 choose.  When the current buffer is visiting FILENAME instruct
    766 blame to center around the line point is on.
    767 
    768 (fn COMMIT FILENAME &optional LINENUM)" t)
    769 (autoload 'magit-run-git-gui "magit-extras" "\
    770 Run `git gui' for the current git repository." t)
    771 (autoload 'magit-run-gitk "magit-extras" "\
    772 Run `gitk' in the current repository." t)
    773 (autoload 'magit-run-gitk-branches "magit-extras" "\
    774 Run `gitk --branches' in the current repository." t)
    775 (autoload 'magit-run-gitk-all "magit-extras" "\
    776 Run `gitk --all' in the current repository." t)
    777 (autoload 'ido-enter-magit-status "magit-extras" "\
    778 Drop into `magit-status' from file switching.
    779 
    780 To make this command available use something like:
    781 
    782   (keymap-set ido-common-completion-map
    783               \"C-x g\" \\='ido-enter-magit-status)
    784 
    785 This command does not work in Emacs 26.1.
    786 See https://github.com/magit/magit/issues/3634
    787 and https://debbugs.gnu.org/cgi/bugreport.cgi?bug=31707." t)
    788 (autoload 'magit-project-status "magit-extras" "\
    789 Run `magit-status' in the current project's root." t)
    790 (autoload 'magit-dired-jump "magit-extras" "\
    791 Visit file at point using Dired.
    792 With a prefix argument, visit in another window.  If there
    793 is no file at point, then instead visit `default-directory'.
    794 
    795 (fn &optional OTHER-WINDOW)" t)
    796 (autoload 'magit-dired-log "magit-extras" "\
    797 Show log for all marked files, or the current file.
    798 
    799 (fn &optional FOLLOW)" t)
    800 (autoload 'magit-dired-am-apply-patches "magit-extras" "\
    801 In Dired, apply the marked (or next ARG) files as patches.
    802 If inside a repository, then apply in that.  Otherwise prompt
    803 for a repository.
    804 
    805 (fn REPO &optional ARG)" t)
    806 (autoload 'magit-do-async-shell-command "magit-extras" "\
    807 Open FILE with `dired-do-async-shell-command'.
    808 Interactively, open the file at point.
    809 
    810 (fn FILE)" t)
    811 (autoload 'magit-previous-line "magit-extras" "\
    812 Like `previous-line' but with Magit-specific shift-selection.
    813 
    814 Magit's selection mechanism is based on the region but selects an
    815 area that is larger than the region.  This causes `previous-line'
    816 when invoked while holding the shift key to move up one line and
    817 thereby select two lines.  When invoked inside a hunk body this
    818 command does not move point on the first invocation and thereby
    819 it only selects a single line.  Which inconsistency you prefer
    820 is a matter of preference.
    821 
    822 (fn &optional ARG TRY-VSCROLL)" t)
    823 (function-put 'magit-previous-line 'interactive-only '"use `forward-line' with negative argument instead.")
    824 (autoload 'magit-next-line "magit-extras" "\
    825 Like `next-line' but with Magit-specific shift-selection.
    826 
    827 Magit's selection mechanism is based on the region but selects
    828 an area that is larger than the region.  This causes `next-line'
    829 when invoked while holding the shift key to move down one line
    830 and thereby select two lines.  When invoked inside a hunk body
    831 this command does not move point on the first invocation and
    832 thereby it only selects a single line.  Which inconsistency you
    833 prefer is a matter of preference.
    834 
    835 (fn &optional ARG TRY-VSCROLL)" t)
    836 (function-put 'magit-next-line 'interactive-only 'forward-line)
    837 (autoload 'magit-clean "magit-extras" "\
    838 Remove untracked files from the working tree.
    839 With a prefix argument also remove ignored files,
    840 with two prefix arguments remove ignored files only.
    841 
    842 (git clean -f -d [-x|-X])
    843 
    844 (fn &optional ARG)" t)
    845 (autoload 'magit-generate-changelog "magit-extras" "\
    846 Insert ChangeLog entries into the current buffer.
    847 
    848 The entries are generated from the diff being committed.
    849 If prefix argument, AMENDING, is non-nil, include changes
    850 in HEAD as well as staged changes in the diff to check.
    851 
    852 (fn &optional AMENDING)" t)
    853 (autoload 'magit-add-change-log-entry "magit-extras" "\
    854 Find change log file and add date entry and item for current change.
    855 This differs from `add-change-log-entry' (which see) in that
    856 it acts on the current hunk in a Magit buffer instead of on
    857 a position in a file-visiting buffer.
    858 
    859 (fn &optional WHOAMI FILE-NAME OTHER-WINDOW)" t)
    860 (autoload 'magit-add-change-log-entry-other-window "magit-extras" "\
    861 Find change log file in other window and add entry and item.
    862 This differs from `add-change-log-entry-other-window' (which see)
    863 in that it acts on the current hunk in a Magit buffer instead of
    864 on a position in a file-visiting buffer.
    865 
    866 (fn &optional WHOAMI FILE-NAME)" t)
    867 (autoload 'magit-edit-line-commit "magit-extras" "\
    868 Edit the commit that added the current line.
    869 
    870 With a prefix argument edit the commit that removes the line,
    871 if any.  The commit is determined using `git blame' and made
    872 editable using `git rebase --interactive' if it is reachable
    873 from `HEAD', or by checking out the commit (or a branch that
    874 points at it) otherwise.
    875 
    876 (fn &optional TYPE)" t)
    877 (autoload 'magit-diff-edit-hunk-commit "magit-extras" "\
    878 From a hunk, edit the respective commit and visit the file.
    879 
    880 First visit the file being modified by the hunk at the correct
    881 location using `magit-diff-visit-file'.  This actually visits a
    882 blob.  When point is on a diff header, not within an individual
    883 hunk, then this visits the blob the first hunk is about.
    884 
    885 Then invoke `magit-edit-line-commit', which uses an interactive
    886 rebase to make the commit editable, or if that is not possible
    887 because the commit is not reachable from `HEAD' by checking out
    888 that commit directly.  This also causes the actual worktree file
    889 to be visited.
    890 
    891 Neither the blob nor the file buffer are killed when finishing
    892 the rebase.  If that is undesirable, then it might be better to
    893 use `magit-rebase-edit-commit' instead of this command.
    894 
    895 (fn FILE)" t)
    896 (autoload 'magit-reshelve-since "magit-extras" "\
    897 Change the author and committer dates of the commits since REV.
    898 
    899 Ask the user for the first reachable commit whose dates should
    900 be changed.  Then read the new date for that commit.  The initial
    901 minibuffer input and the previous history element offer good
    902 values.  The next commit will be created one minute later and so
    903 on.
    904 
    905 This command is only intended for interactive use and should only
    906 be used on highly rearranged and unpublished history.
    907 
    908 If KEYID is non-nil, then use that to sign all reshelved commits.
    909 Interactively use the value of the \"--gpg-sign\" option in the
    910 list returned by `magit-rebase-arguments'.
    911 
    912 (fn REV KEYID)" t)
    913 (autoload 'magit-pop-revision-stack "magit-extras" "\
    914 Insert a representation of a revision into the current buffer.
    915 
    916 Pop a revision from the `magit-revision-stack' and insert it into
    917 the current buffer according to `magit-pop-revision-stack-format'.
    918 Revisions can be put on the stack using `magit-copy-section-value'
    919 and `magit-copy-buffer-revision'.
    920 
    921 If the stack is empty or with a prefix argument, instead read a
    922 revision in the minibuffer.  By using the minibuffer history this
    923 allows selecting an item which was popped earlier or to insert an
    924 arbitrary reference or revision without first pushing it onto the
    925 stack.
    926 
    927 When reading the revision from the minibuffer, then it might not
    928 be possible to guess the correct repository.  When this command
    929 is called inside a repository (e.g., while composing a commit
    930 message), then that repository is used.  Otherwise (e.g., while
    931 composing an email) then the repository recorded for the top
    932 element of the stack is used (even though we insert another
    933 revision).  If not called inside a repository and with an empty
    934 stack, or with two prefix arguments, then read the repository in
    935 the minibuffer too.
    936 
    937 (fn REV TOPLEVEL)" t)
    938 (autoload 'magit-copy-section-value "magit-extras" "\
    939 Save the value of the current section for later use.
    940 
    941 Save the section value to the `kill-ring', and, provided that
    942 the current section is a commit, branch, or tag section, push
    943 the (referenced) revision to the `magit-revision-stack' for use
    944 with `magit-pop-revision-stack'.
    945 
    946 When `magit-copy-revision-abbreviated' is non-nil, save the
    947 abbreviated revision to the `kill-ring' and the
    948 `magit-revision-stack'.
    949 
    950 When the current section is a branch or a tag, and a prefix
    951 argument is used, then save the revision at its tip to the
    952 `kill-ring' instead of the reference name.
    953 
    954 When the region is active, then save that to the `kill-ring',
    955 like `kill-ring-save' would, instead of behaving as described
    956 above.  If a prefix argument is used and the region is within
    957 a hunk, then strip the diff marker column and keep only either
    958 the added or removed lines, depending on the sign of the prefix
    959 argument.
    960 
    961 (fn ARG)" t)
    962 (autoload 'magit-copy-buffer-revision "magit-extras" "\
    963 Save the revision of the current buffer for later use.
    964 
    965 Save the revision shown in the current buffer to the `kill-ring'
    966 and push it to the `magit-revision-stack'.
    967 
    968 This command is mainly intended for use in `magit-revision-mode'
    969 buffers, the only buffers where it is always unambiguous exactly
    970 which revision should be saved.
    971 
    972 Most other Magit buffers usually show more than one revision, in
    973 some way or another, so this command has to select one of them,
    974 and that choice might not always be the one you think would have
    975 been the best pick.
    976 
    977 In such buffers it is often more useful to save the value of
    978 the current section instead, using `magit-copy-section-value'.
    979 
    980 When the region is active, then save that to the `kill-ring',
    981 like `kill-ring-save' would, instead of behaving as described
    982 above.
    983 
    984 When `magit-copy-revision-abbreviated' is non-nil, save the
    985 abbreviated revision to the `kill-ring' and the
    986 `magit-revision-stack'." t)
    987 (autoload 'magit-display-repository-buffer "magit-extras" "\
    988 Display a Magit buffer belonging to the current Git repository.
    989 The buffer is displayed using `magit-display-buffer', which see.
    990 
    991 (fn BUFFER)" t)
    992 (autoload 'magit-switch-to-repository-buffer "magit-extras" "\
    993 Switch to a Magit buffer belonging to the current Git repository.
    994 
    995 (fn BUFFER)" t)
    996 (autoload 'magit-switch-to-repository-buffer-other-window "magit-extras" "\
    997 Switch to a Magit buffer belonging to the current Git repository.
    998 
    999 (fn BUFFER)" t)
   1000 (autoload 'magit-switch-to-repository-buffer-other-frame "magit-extras" "\
   1001 Switch to a Magit buffer belonging to the current Git repository.
   1002 
   1003 (fn BUFFER)" t)
   1004 (autoload 'magit-abort-dwim "magit-extras" "\
   1005 Abort current operation.
   1006 Depending on the context, this will abort a merge, a rebase, a
   1007 patch application, a cherry-pick, a revert, or a bisect." t)
   1008 (register-definition-prefixes "magit-extras" '("magit-"))
   1009 
   1010 
   1011 ;;; Generated autoloads from magit-fetch.el
   1012 
   1013  (autoload 'magit-fetch "magit-fetch" nil t)
   1014  (autoload 'magit-fetch-from-pushremote "magit-fetch" nil t)
   1015  (autoload 'magit-fetch-from-upstream "magit-fetch" nil t)
   1016 (autoload 'magit-fetch-other "magit-fetch" "\
   1017 Fetch from another repository.
   1018 
   1019 (fn REMOTE ARGS)" t)
   1020 (autoload 'magit-fetch-branch "magit-fetch" "\
   1021 Fetch a BRANCH from a REMOTE.
   1022 
   1023 (fn REMOTE BRANCH ARGS)" t)
   1024 (autoload 'magit-fetch-refspec "magit-fetch" "\
   1025 Fetch a REFSPEC from a REMOTE.
   1026 
   1027 (fn REMOTE REFSPEC ARGS)" t)
   1028 (autoload 'magit-fetch-all "magit-fetch" "\
   1029 Fetch from all remotes.
   1030 
   1031 (fn ARGS)" t)
   1032 (autoload 'magit-fetch-all-prune "magit-fetch" "\
   1033 Fetch from all remotes, and prune.
   1034 Prune remote tracking branches for branches that have been
   1035 removed on the respective remote." t)
   1036 (autoload 'magit-fetch-all-no-prune "magit-fetch" "\
   1037 Fetch from all remotes." t)
   1038  (autoload 'magit-fetch-modules "magit-fetch" nil t)
   1039 (register-definition-prefixes "magit-fetch" '("magit-"))
   1040 
   1041 
   1042 ;;; Generated autoloads from magit-files.el
   1043 
   1044 (autoload 'magit-find-file "magit-files" "\
   1045 View FILE from REV.
   1046 Switch to a buffer visiting blob REV:FILE, creating one if none
   1047 already exists.  If prior to calling this command the current
   1048 buffer and/or cursor position is about the same file, then go
   1049 to the line and column corresponding to that location.
   1050 
   1051 (fn REV FILE)" t)
   1052 (autoload 'magit-find-file-other-window "magit-files" "\
   1053 View FILE from REV, in another window.
   1054 Switch to a buffer visiting blob REV:FILE, creating one if none
   1055 already exists.  If prior to calling this command the current
   1056 buffer and/or cursor position is about the same file, then go to
   1057 the line and column corresponding to that location.
   1058 
   1059 (fn REV FILE)" t)
   1060 (autoload 'magit-find-file-other-frame "magit-files" "\
   1061 View FILE from REV, in another frame.
   1062 Switch to a buffer visiting blob REV:FILE, creating one if none
   1063 already exists.  If prior to calling this command the current
   1064 buffer and/or cursor position is about the same file, then go to
   1065 the line and column corresponding to that location.
   1066 
   1067 (fn REV FILE)" t)
   1068  (autoload 'magit-file-dispatch "magit" nil t)
   1069 (autoload 'magit-blob-visit-file "magit-files" "\
   1070 View the file from the worktree corresponding to the current blob.
   1071 When visiting a blob or the version from the index, then go to
   1072 the same location in the respective file in the working tree." t)
   1073 (autoload 'magit-file-checkout "magit-files" "\
   1074 Checkout FILE from REV.
   1075 
   1076 (fn REV FILE)" t)
   1077 (register-definition-prefixes "magit-files" '("lsp" "magit-"))
   1078 
   1079 
   1080 ;;; Generated autoloads from magit-git.el
   1081 
   1082 (register-definition-prefixes "magit-git" '("magit-"))
   1083 
   1084 
   1085 ;;; Generated autoloads from magit-gitignore.el
   1086 
   1087  (autoload 'magit-gitignore "magit-gitignore" nil t)
   1088 (autoload 'magit-gitignore-in-topdir "magit-gitignore" "\
   1089 Add the Git ignore RULE to the top-level \".gitignore\" file.
   1090 Since this file is tracked, it is shared with other clones of the
   1091 repository.  Also stage the file.
   1092 
   1093 (fn RULE)" t)
   1094 (autoload 'magit-gitignore-in-subdir "magit-gitignore" "\
   1095 Add the Git ignore RULE to a \".gitignore\" file in DIRECTORY.
   1096 Prompt the user for a directory and add the rule to the
   1097 \".gitignore\" file in that directory.  Since such files are
   1098 tracked, they are shared with other clones of the repository.
   1099 Also stage the file.
   1100 
   1101 (fn RULE DIRECTORY)" t)
   1102 (autoload 'magit-gitignore-in-gitdir "magit-gitignore" "\
   1103 Add the Git ignore RULE to \"$GIT_DIR/info/exclude\".
   1104 Rules in that file only affects this clone of the repository.
   1105 
   1106 (fn RULE)" t)
   1107 (autoload 'magit-gitignore-on-system "magit-gitignore" "\
   1108 Add the Git ignore RULE to the file specified by `core.excludesFile'.
   1109 Rules that are defined in that file affect all local repositories.
   1110 
   1111 (fn RULE)" t)
   1112 (autoload 'magit-skip-worktree "magit-gitignore" "\
   1113 Call \"git update-index --skip-worktree -- FILE\".
   1114 
   1115 (fn FILE)" t)
   1116 (autoload 'magit-no-skip-worktree "magit-gitignore" "\
   1117 Call \"git update-index --no-skip-worktree -- FILE\".
   1118 
   1119 (fn FILE)" t)
   1120 (autoload 'magit-assume-unchanged "magit-gitignore" "\
   1121 Call \"git update-index --assume-unchanged -- FILE\".
   1122 
   1123 (fn FILE)" t)
   1124 (autoload 'magit-no-assume-unchanged "magit-gitignore" "\
   1125 Call \"git update-index --no-assume-unchanged -- FILE\".
   1126 
   1127 (fn FILE)" t)
   1128 (register-definition-prefixes "magit-gitignore" '("magit-"))
   1129 
   1130 
   1131 ;;; Generated autoloads from magit-log.el
   1132 
   1133  (autoload 'magit-log "magit-log" nil t)
   1134  (autoload 'magit-log-refresh "magit-log" nil t)
   1135 (autoload 'magit-log-current "magit-log" "\
   1136 Show log for the current branch.
   1137 When `HEAD' is detached or with a prefix argument show log for
   1138 one or more revs read from the minibuffer.
   1139 
   1140 (fn REVS &optional ARGS FILES)" t)
   1141 (autoload 'magit-log-head "magit-log" "\
   1142 Show log for `HEAD'.
   1143 
   1144 (fn &optional ARGS FILES)" t)
   1145 (autoload 'magit-log-related "magit-log" "\
   1146 Show log for the current branch, its upstream and its push target.
   1147 When the upstream is a local branch, then also show its own
   1148 upstream.  When `HEAD' is detached, then show log for that, the
   1149 previously checked out branch and its upstream and push-target.
   1150 
   1151 (fn REVS &optional ARGS FILES)" t)
   1152 (autoload 'magit-log-other "magit-log" "\
   1153 Show log for one or more revs read from the minibuffer.
   1154 The user can input any revision or revisions separated by a
   1155 space, or even ranges, but only branches and tags, and a
   1156 representation of the commit at point, are available as
   1157 completion candidates.
   1158 
   1159 (fn REVS &optional ARGS FILES)" t)
   1160 (autoload 'magit-log-branches "magit-log" "\
   1161 Show log for all local branches and `HEAD'.
   1162 
   1163 (fn &optional ARGS FILES)" t)
   1164 (autoload 'magit-log-matching-branches "magit-log" "\
   1165 Show log for all branches matching PATTERN and `HEAD'.
   1166 
   1167 (fn PATTERN &optional ARGS FILES)" t)
   1168 (autoload 'magit-log-matching-tags "magit-log" "\
   1169 Show log for all tags matching PATTERN and `HEAD'.
   1170 
   1171 (fn PATTERN &optional ARGS FILES)" t)
   1172 (autoload 'magit-log-all-branches "magit-log" "\
   1173 Show log for all local and remote branches and `HEAD'.
   1174 
   1175 (fn &optional ARGS FILES)" t)
   1176 (autoload 'magit-log-all "magit-log" "\
   1177 Show log for all references and `HEAD'.
   1178 
   1179 (fn &optional ARGS FILES)" t)
   1180 (autoload 'magit-log-buffer-file "magit-log" "\
   1181 Show log for the blob or file visited in the current buffer.
   1182 With a prefix argument or when `--follow' is an active log
   1183 argument, then follow renames.  When the region is active,
   1184 restrict the log to the lines that the region touches.
   1185 
   1186 (fn &optional FOLLOW BEG END)" t)
   1187 (autoload 'magit-log-trace-definition "magit-log" "\
   1188 Show log for the definition at point.
   1189 
   1190 (fn FILE FN REV)" t)
   1191 (autoload 'magit-log-merged "magit-log" "\
   1192 Show log for the merge of COMMIT into BRANCH.
   1193 
   1194 More precisely, find merge commit M that brought COMMIT into
   1195 BRANCH, and show the log of the range \"M^1..M\". If COMMIT is
   1196 directly on BRANCH, then show approximately
   1197 `magit-log-merged-commit-count' surrounding commits instead.
   1198 
   1199 This command requires git-when-merged, which is available from
   1200 https://github.com/mhagger/git-when-merged.
   1201 
   1202 (fn COMMIT BRANCH &optional ARGS FILES)" t)
   1203 (autoload 'magit-log-move-to-parent "magit-log" "\
   1204 Move to the Nth parent of the current commit.
   1205 
   1206 (fn &optional N)" t)
   1207  (autoload 'magit-shortlog "magit-log" nil t)
   1208 (autoload 'magit-shortlog-since "magit-log" "\
   1209 Show a history summary for commits since REV.
   1210 
   1211 (fn REV ARGS)" t)
   1212 (autoload 'magit-shortlog-range "magit-log" "\
   1213 Show a history summary for commit or range REV-OR-RANGE.
   1214 
   1215 (fn REV-OR-RANGE ARGS)" t)
   1216 (autoload 'magit-cherry "magit-log" "\
   1217 Show commits in a branch that are not merged in the upstream branch.
   1218 
   1219 (fn HEAD UPSTREAM)" t)
   1220 (register-definition-prefixes "magit-log" '("magit-"))
   1221 
   1222 
   1223 ;;; Generated autoloads from magit-margin.el
   1224 
   1225 (register-definition-prefixes "magit-margin" '("magit-"))
   1226 
   1227 
   1228 ;;; Generated autoloads from magit-merge.el
   1229 
   1230  (autoload 'magit-merge "magit" nil t)
   1231 (autoload 'magit-merge-plain "magit-merge" "\
   1232 Merge commit REV into the current branch; using default message.
   1233 
   1234 Unless there are conflicts or a prefix argument is used create a
   1235 merge commit using a generic commit message and without letting
   1236 the user inspect the result.  With a prefix argument pretend the
   1237 merge failed to give the user the opportunity to inspect the
   1238 merge.
   1239 
   1240 (git merge --no-edit|--no-commit [ARGS] REV)
   1241 
   1242 (fn REV &optional ARGS NOCOMMIT)" t)
   1243 (autoload 'magit-merge-editmsg "magit-merge" "\
   1244 Merge commit REV into the current branch; and edit message.
   1245 Perform the merge and prepare a commit message but let the user
   1246 edit it.
   1247 
   1248 (git merge --edit --no-ff [ARGS] REV)
   1249 
   1250 (fn REV &optional ARGS)" t)
   1251 (autoload 'magit-merge-nocommit "magit-merge" "\
   1252 Merge commit REV into the current branch; pretending it failed.
   1253 Pretend the merge failed to give the user the opportunity to
   1254 inspect the merge and change the commit message.
   1255 
   1256 (git merge --no-commit --no-ff [ARGS] REV)
   1257 
   1258 (fn REV &optional ARGS)" t)
   1259 (autoload 'magit-merge-into "magit-merge" "\
   1260 Merge the current branch into BRANCH and remove the former.
   1261 
   1262 Before merging, force push the source branch to its push-remote,
   1263 provided the respective remote branch already exists, ensuring
   1264 that the respective pull-request (if any) won't get stuck on some
   1265 obsolete version of the commits that are being merged.  Finally
   1266 if `forge-branch-pullreq' was used to create the merged branch,
   1267 then also remove the respective remote branch.
   1268 
   1269 (fn BRANCH &optional ARGS)" t)
   1270 (autoload 'magit-merge-absorb "magit-merge" "\
   1271 Merge BRANCH into the current branch and remove the former.
   1272 
   1273 Before merging, force push the source branch to its push-remote,
   1274 provided the respective remote branch already exists, ensuring
   1275 that the respective pull-request (if any) won't get stuck on some
   1276 obsolete version of the commits that are being merged.  Finally
   1277 if `forge-branch-pullreq' was used to create the merged branch,
   1278 then also remove the respective remote branch.
   1279 
   1280 (fn BRANCH &optional ARGS)" t)
   1281 (autoload 'magit-merge-squash "magit-merge" "\
   1282 Squash commit REV into the current branch; don't create a commit.
   1283 
   1284 (git merge --squash REV)
   1285 
   1286 (fn REV)" t)
   1287 (autoload 'magit-merge-preview "magit-merge" "\
   1288 Preview result of merging REV into the current branch.
   1289 
   1290 (fn REV)" t)
   1291 (autoload 'magit-merge-abort "magit-merge" "\
   1292 Abort the current merge operation.
   1293 
   1294 (git merge --abort)" t)
   1295 (register-definition-prefixes "magit-merge" '("magit-"))
   1296 
   1297 
   1298 ;;; Generated autoloads from magit-mode.el
   1299 
   1300 (autoload 'magit-info "magit-mode" "\
   1301 Visit the Magit manual." t)
   1302 (register-definition-prefixes "magit-mode" '("magit-"))
   1303 
   1304 
   1305 ;;; Generated autoloads from magit-notes.el
   1306 
   1307  (autoload 'magit-notes "magit" nil t)
   1308 (register-definition-prefixes "magit-notes" '("magit-notes-"))
   1309 
   1310 
   1311 ;;; Generated autoloads from magit-patch.el
   1312 
   1313  (autoload 'magit-patch "magit-patch" nil t)
   1314  (autoload 'magit-patch-create "magit-patch" nil t)
   1315  (autoload 'magit-patch-apply "magit-patch" nil t)
   1316 (autoload 'magit-patch-save "magit-patch" "\
   1317 Write current diff into patch FILE.
   1318 
   1319 What arguments are used to create the patch depends on the value
   1320 of `magit-patch-save-arguments' and whether a prefix argument is
   1321 used.
   1322 
   1323 If the value is the symbol `buffer', then use the same arguments
   1324 as the buffer.  With a prefix argument use no arguments.
   1325 
   1326 If the value is a list beginning with the symbol `exclude', then
   1327 use the same arguments as the buffer except for those matched by
   1328 entries in the cdr of the list.  The comparison is done using
   1329 `string-prefix-p'.  With a prefix argument use the same arguments
   1330 as the buffer.
   1331 
   1332 If the value is a list of strings (including the empty list),
   1333 then use those arguments.  With a prefix argument use the same
   1334 arguments as the buffer.
   1335 
   1336 Of course the arguments that are required to actually show the
   1337 same differences as those shown in the buffer are always used.
   1338 
   1339 (fn FILE &optional ARG)" t)
   1340 (autoload 'magit-request-pull "magit-patch" "\
   1341 Request upstream to pull from your public repository.
   1342 
   1343 URL is the url of your publicly accessible repository.
   1344 START is a commit that already is in the upstream repository.
   1345 END is the last commit, usually a branch name, which upstream
   1346 is asked to pull.  START has to be reachable from that commit.
   1347 
   1348 (fn URL START END)" t)
   1349 (register-definition-prefixes "magit-patch" '("magit-"))
   1350 
   1351 
   1352 ;;; Generated autoloads from magit-process.el
   1353 
   1354 (register-definition-prefixes "magit-process" '("magit-" "tramp-sh-handle-"))
   1355 
   1356 
   1357 ;;; Generated autoloads from magit-pull.el
   1358 
   1359  (autoload 'magit-pull "magit-pull" nil t)
   1360  (autoload 'magit-pull-from-pushremote "magit-pull" nil t)
   1361  (autoload 'magit-pull-from-upstream "magit-pull" nil t)
   1362 (autoload 'magit-pull-branch "magit-pull" "\
   1363 Pull from a branch read in the minibuffer.
   1364 
   1365 (fn SOURCE ARGS)" t)
   1366 (register-definition-prefixes "magit-pull" '("magit-pull-"))
   1367 
   1368 
   1369 ;;; Generated autoloads from magit-push.el
   1370 
   1371  (autoload 'magit-push "magit-push" nil t)
   1372  (autoload 'magit-push-current-to-pushremote "magit-push" nil t)
   1373  (autoload 'magit-push-current-to-upstream "magit-push" nil t)
   1374 (autoload 'magit-push-current "magit-push" "\
   1375 Push the current branch to a branch read in the minibuffer.
   1376 
   1377 (fn TARGET ARGS)" t)
   1378 (autoload 'magit-push-other "magit-push" "\
   1379 Push an arbitrary branch or commit somewhere.
   1380 Both the source and the target are read in the minibuffer.
   1381 
   1382 (fn SOURCE TARGET ARGS)" t)
   1383 (autoload 'magit-push-refspecs "magit-push" "\
   1384 Push one or multiple REFSPECS to a REMOTE.
   1385 Both the REMOTE and the REFSPECS are read in the minibuffer.  To
   1386 use multiple REFSPECS, separate them with commas.  Completion is
   1387 only available for the part before the colon, or when no colon
   1388 is used.
   1389 
   1390 (fn REMOTE REFSPECS ARGS)" t)
   1391 (autoload 'magit-push-matching "magit-push" "\
   1392 Push all matching branches to another repository.
   1393 If multiple remotes exist, then read one from the user.
   1394 If just one exists, use that without requiring confirmation.
   1395 
   1396 (fn REMOTE &optional ARGS)" t)
   1397 (autoload 'magit-push-tags "magit-push" "\
   1398 Push all tags to another repository.
   1399 If only one remote exists, then push to that.  Otherwise prompt
   1400 for a remote, offering the remote configured for the current
   1401 branch as default.
   1402 
   1403 (fn REMOTE &optional ARGS)" t)
   1404 (autoload 'magit-push-tag "magit-push" "\
   1405 Push a tag to another repository.
   1406 
   1407 (fn TAG REMOTE &optional ARGS)" t)
   1408 (autoload 'magit-push-notes-ref "magit-push" "\
   1409 Push a notes ref to another repository.
   1410 
   1411 (fn REF REMOTE &optional ARGS)" t)
   1412  (autoload 'magit-push-implicitly "magit-push" nil t)
   1413  (autoload 'magit-push-to-remote "magit-push" nil t)
   1414 (register-definition-prefixes "magit-push" '("magit-"))
   1415 
   1416 
   1417 ;;; Generated autoloads from magit-reflog.el
   1418 
   1419 (autoload 'magit-reflog-current "magit-reflog" "\
   1420 Display the reflog of the current branch.
   1421 If `HEAD' is detached, then show the reflog for that instead." t)
   1422 (autoload 'magit-reflog-other "magit-reflog" "\
   1423 Display the reflog of a branch or another ref.
   1424 
   1425 (fn REF)" t)
   1426 (autoload 'magit-reflog-head "magit-reflog" "\
   1427 Display the `HEAD' reflog." t)
   1428 (register-definition-prefixes "magit-reflog" '("magit-reflog-"))
   1429 
   1430 
   1431 ;;; Generated autoloads from magit-refs.el
   1432 
   1433  (autoload 'magit-show-refs "magit-refs" nil t)
   1434 (autoload 'magit-show-refs-head "magit-refs" "\
   1435 List and compare references in a dedicated buffer.
   1436 Compared with `HEAD'.
   1437 
   1438 (fn &optional ARGS)" t)
   1439 (autoload 'magit-show-refs-current "magit-refs" "\
   1440 List and compare references in a dedicated buffer.
   1441 Compare with the current branch or `HEAD' if it is detached.
   1442 
   1443 (fn &optional ARGS)" t)
   1444 (autoload 'magit-show-refs-other "magit-refs" "\
   1445 List and compare references in a dedicated buffer.
   1446 Compared with a branch read from the user.
   1447 
   1448 (fn &optional REF ARGS)" t)
   1449 (register-definition-prefixes "magit-refs" '("magit-"))
   1450 
   1451 
   1452 ;;; Generated autoloads from magit-remote.el
   1453 
   1454  (autoload 'magit-remote "magit-remote" nil t)
   1455 (autoload 'magit-remote-add "magit-remote" "\
   1456 Add a remote named REMOTE and fetch it.
   1457 
   1458 (fn REMOTE URL &optional ARGS)" t)
   1459 (autoload 'magit-remote-rename "magit-remote" "\
   1460 Rename the remote named OLD to NEW.
   1461 
   1462 (fn OLD NEW)" t)
   1463 (autoload 'magit-remote-remove "magit-remote" "\
   1464 Delete the remote named REMOTE.
   1465 
   1466 (fn REMOTE)" t)
   1467 (autoload 'magit-remote-prune "magit-remote" "\
   1468 Remove stale remote-tracking branches for REMOTE.
   1469 
   1470 (fn REMOTE)" t)
   1471 (autoload 'magit-remote-prune-refspecs "magit-remote" "\
   1472 Remove stale refspecs for REMOTE.
   1473 
   1474 A refspec is stale if there no longer exists at least one branch
   1475 on the remote that would be fetched due to that refspec.  A stale
   1476 refspec is problematic because its existence causes Git to refuse
   1477 to fetch according to the remaining non-stale refspecs.
   1478 
   1479 If only stale refspecs remain, then offer to either delete the
   1480 remote or to replace the stale refspecs with the default refspec.
   1481 
   1482 Also remove the remote-tracking branches that were created due to
   1483 the now stale refspecs.  Other stale branches are not removed.
   1484 
   1485 (fn REMOTE)" t)
   1486 (autoload 'magit-remote-set-head "magit-remote" "\
   1487 Set the local representation of REMOTE's default branch.
   1488 Query REMOTE and set the symbolic-ref refs/remotes/<remote>/HEAD
   1489 accordingly.  With a prefix argument query for the branch to be
   1490 used, which allows you to select an incorrect value if you fancy
   1491 doing that.
   1492 
   1493 (fn REMOTE &optional BRANCH)" t)
   1494 (autoload 'magit-remote-unset-head "magit-remote" "\
   1495 Unset the local representation of REMOTE's default branch.
   1496 Delete the symbolic-ref \"refs/remotes/<remote>/HEAD\".
   1497 
   1498 (fn REMOTE)" t)
   1499  (autoload 'magit-update-default-branch "magit-remote" nil t)
   1500 (autoload 'magit-remote-unshallow "magit-remote" "\
   1501 Convert a shallow remote into a full one.
   1502 If only a single refspec is set and it does not contain a
   1503 wildcard, then also offer to replace it with the standard
   1504 refspec.
   1505 
   1506 (fn REMOTE)" t)
   1507  (autoload 'magit-remote-configure "magit-remote" nil t)
   1508 (register-definition-prefixes "magit-remote" '("magit-"))
   1509 
   1510 
   1511 ;;; Generated autoloads from magit-repos.el
   1512 
   1513 (autoload 'magit-list-repositories "magit-repos" "\
   1514 Display a list of repositories.
   1515 
   1516 Use the option `magit-repository-directories' to control which
   1517 repositories are displayed." t)
   1518 (register-definition-prefixes "magit-repos" '("magit-"))
   1519 
   1520 
   1521 ;;; Generated autoloads from magit-reset.el
   1522 
   1523  (autoload 'magit-reset "magit" nil t)
   1524 (autoload 'magit-reset-mixed "magit-reset" "\
   1525 Reset the `HEAD' and index to COMMIT, but not the working tree.
   1526 
   1527 (git reset --mixed COMMIT)
   1528 
   1529 (fn COMMIT)" t)
   1530 (autoload 'magit-reset-soft "magit-reset" "\
   1531 Reset the `HEAD' to COMMIT, but not the index and working tree.
   1532 
   1533 (git reset --soft REVISION)
   1534 
   1535 (fn COMMIT)" t)
   1536 (autoload 'magit-reset-hard "magit-reset" "\
   1537 Reset the `HEAD', index, and working tree to COMMIT.
   1538 
   1539 (git reset --hard REVISION)
   1540 
   1541 (fn COMMIT)" t)
   1542 (autoload 'magit-reset-keep "magit-reset" "\
   1543 Reset the `HEAD' and index to COMMIT, while keeping uncommitted changes.
   1544 
   1545 (git reset --keep REVISION)
   1546 
   1547 (fn COMMIT)" t)
   1548 (autoload 'magit-reset-index "magit-reset" "\
   1549 Reset the index to COMMIT.
   1550 Keep the `HEAD' and working tree as-is, so if COMMIT refers to the
   1551 head this effectively unstages all changes.
   1552 
   1553 (git reset COMMIT .)
   1554 
   1555 (fn COMMIT)" t)
   1556 (autoload 'magit-reset-worktree "magit-reset" "\
   1557 Reset the worktree to COMMIT.
   1558 Keep the `HEAD' and index as-is.
   1559 
   1560 (fn COMMIT)" t)
   1561 (autoload 'magit-reset-quickly "magit-reset" "\
   1562 Reset the `HEAD' and index to COMMIT, and possibly the working tree.
   1563 With a prefix argument reset the working tree otherwise don't.
   1564 
   1565 (git reset --mixed|--hard COMMIT)
   1566 
   1567 (fn COMMIT &optional HARD)" t)
   1568 (register-definition-prefixes "magit-reset" '("magit-reset-"))
   1569 
   1570 
   1571 ;;; Generated autoloads from magit-sequence.el
   1572 
   1573 (autoload 'magit-sequencer-continue "magit-sequence" "\
   1574 Resume the current cherry-pick or revert sequence." t)
   1575 (autoload 'magit-sequencer-skip "magit-sequence" "\
   1576 Skip the stopped at commit during a cherry-pick or revert sequence." t)
   1577 (autoload 'magit-sequencer-abort "magit-sequence" "\
   1578 Abort the current cherry-pick or revert sequence.
   1579 This discards all changes made since the sequence started." t)
   1580  (autoload 'magit-cherry-pick "magit-sequence" nil t)
   1581 (autoload 'magit-cherry-copy "magit-sequence" "\
   1582 Copy COMMITS from another branch onto the current branch.
   1583 Prompt for a commit, defaulting to the commit at point.  If
   1584 the region selects multiple commits, then pick all of them,
   1585 without prompting.
   1586 
   1587 (fn COMMITS &optional ARGS)" t)
   1588 (autoload 'magit-cherry-apply "magit-sequence" "\
   1589 Apply the changes in COMMITS but do not commit them.
   1590 Prompt for a commit, defaulting to the commit at point.  If
   1591 the region selects multiple commits, then apply all of them,
   1592 without prompting.
   1593 
   1594 (fn COMMITS &optional ARGS)" t)
   1595 (autoload 'magit-cherry-harvest "magit-sequence" "\
   1596 Move COMMITS from another BRANCH onto the current branch.
   1597 Remove the COMMITS from BRANCH and stay on the current branch.
   1598 If a conflict occurs, then you have to fix that and finish the
   1599 process manually.
   1600 
   1601 (fn COMMITS BRANCH &optional ARGS)" t)
   1602 (autoload 'magit-cherry-donate "magit-sequence" "\
   1603 Move COMMITS from the current branch onto another existing BRANCH.
   1604 Remove COMMITS from the current branch and stay on that branch.
   1605 If a conflict occurs, then you have to fix that and finish the
   1606 process manually.  `HEAD' is allowed to be detached initially.
   1607 
   1608 (fn COMMITS BRANCH &optional ARGS)" t)
   1609 (autoload 'magit-cherry-spinout "magit-sequence" "\
   1610 Move COMMITS from the current branch onto a new BRANCH.
   1611 Remove COMMITS from the current branch and stay on that branch.
   1612 If a conflict occurs, then you have to fix that and finish the
   1613 process manually.
   1614 
   1615 (fn COMMITS BRANCH START-POINT &optional ARGS)" t)
   1616 (autoload 'magit-cherry-spinoff "magit-sequence" "\
   1617 Move COMMITS from the current branch onto a new BRANCH.
   1618 Remove COMMITS from the current branch and checkout BRANCH.
   1619 If a conflict occurs, then you have to fix that and finish
   1620 the process manually.
   1621 
   1622 (fn COMMITS BRANCH START-POINT &optional ARGS)" t)
   1623  (autoload 'magit-revert "magit-sequence" nil t)
   1624 (autoload 'magit-revert-and-commit "magit-sequence" "\
   1625 Revert COMMIT by creating a new commit.
   1626 Prompt for a commit, defaulting to the commit at point.  If
   1627 the region selects multiple commits, then revert all of them,
   1628 without prompting.
   1629 
   1630 (fn COMMIT &optional ARGS)" t)
   1631 (autoload 'magit-revert-no-commit "magit-sequence" "\
   1632 Revert COMMIT by applying it in reverse to the worktree.
   1633 Prompt for a commit, defaulting to the commit at point.  If
   1634 the region selects multiple commits, then revert all of them,
   1635 without prompting.
   1636 
   1637 (fn COMMIT &optional ARGS)" t)
   1638  (autoload 'magit-am "magit-sequence" nil t)
   1639 (autoload 'magit-am-apply-patches "magit-sequence" "\
   1640 Apply the patches FILES.
   1641 
   1642 (fn &optional FILES ARGS)" t)
   1643 (autoload 'magit-am-apply-maildir "magit-sequence" "\
   1644 Apply the patches from MAILDIR.
   1645 
   1646 (fn &optional MAILDIR ARGS)" t)
   1647 (autoload 'magit-am-continue "magit-sequence" "\
   1648 Resume the current patch applying sequence." t)
   1649 (autoload 'magit-am-skip "magit-sequence" "\
   1650 Skip the stopped at patch during a patch applying sequence." t)
   1651 (autoload 'magit-am-abort "magit-sequence" "\
   1652 Abort the current patch applying sequence.
   1653 This discards all changes made since the sequence started." t)
   1654  (autoload 'magit-rebase "magit-sequence" nil t)
   1655  (autoload 'magit-rebase-onto-pushremote "magit-sequence" nil t)
   1656  (autoload 'magit-rebase-onto-upstream "magit-sequence" nil t)
   1657 (autoload 'magit-rebase-branch "magit-sequence" "\
   1658 Rebase the current branch onto a branch read in the minibuffer.
   1659 All commits that are reachable from `HEAD' but not from the
   1660 selected branch TARGET are being rebased.
   1661 
   1662 (fn TARGET ARGS)" t)
   1663 (autoload 'magit-rebase-subset "magit-sequence" "\
   1664 Rebase a subset of the current branch's history onto a new base.
   1665 Rebase commits from START to `HEAD' onto NEWBASE.
   1666 START has to be selected from a list of recent commits.
   1667 
   1668 (fn NEWBASE START ARGS)" t)
   1669 (autoload 'magit-rebase-interactive "magit-sequence" "\
   1670 Start an interactive rebase sequence.
   1671 
   1672 (fn COMMIT ARGS)" t)
   1673 (autoload 'magit-rebase-autosquash "magit-sequence" "\
   1674 Combine squash and fixup commits with their intended targets.
   1675 
   1676 (fn ARGS)" t)
   1677 (autoload 'magit-rebase-edit-commit "magit-sequence" "\
   1678 Edit a single older commit using rebase.
   1679 
   1680 (fn COMMIT ARGS)" t)
   1681 (autoload 'magit-rebase-reword-commit "magit-sequence" "\
   1682 Reword a single older commit using rebase.
   1683 
   1684 (fn COMMIT ARGS)" t)
   1685 (autoload 'magit-rebase-remove-commit "magit-sequence" "\
   1686 Remove a single older commit using rebase.
   1687 
   1688 (fn COMMIT ARGS)" t)
   1689 (autoload 'magit-rebase-continue "magit-sequence" "\
   1690 Restart the current rebasing operation.
   1691 In some cases this pops up a commit message buffer for you do
   1692 edit.  With a prefix argument the old message is reused as-is.
   1693 
   1694 (fn &optional NOEDIT)" t)
   1695 (autoload 'magit-rebase-skip "magit-sequence" "\
   1696 Skip the current commit and restart the current rebase operation." t)
   1697 (autoload 'magit-rebase-edit "magit-sequence" "\
   1698 Edit the todo list of the current rebase operation." t)
   1699 (autoload 'magit-rebase-abort "magit-sequence" "\
   1700 Abort the current rebase operation, restoring the original branch." t)
   1701 (register-definition-prefixes "magit-sequence" '("magit-"))
   1702 
   1703 
   1704 ;;; Generated autoloads from magit-sparse-checkout.el
   1705 
   1706  (autoload 'magit-sparse-checkout "magit-sparse-checkout" nil t)
   1707 (autoload 'magit-sparse-checkout-enable "magit-sparse-checkout" "\
   1708 Convert the working tree to a sparse checkout.
   1709 
   1710 (fn &optional ARGS)" t)
   1711 (autoload 'magit-sparse-checkout-set "magit-sparse-checkout" "\
   1712 Restrict working tree to DIRECTORIES.
   1713 To extend rather than override the currently configured
   1714 directories, call `magit-sparse-checkout-add' instead.
   1715 
   1716 (fn DIRECTORIES)" t)
   1717 (autoload 'magit-sparse-checkout-add "magit-sparse-checkout" "\
   1718 Add DIRECTORIES to the working tree.
   1719 To override rather than extend the currently configured
   1720 directories, call `magit-sparse-checkout-set' instead.
   1721 
   1722 (fn DIRECTORIES)" t)
   1723 (autoload 'magit-sparse-checkout-reapply "magit-sparse-checkout" "\
   1724 Reapply the sparse checkout rules to the working tree.
   1725 Some operations such as merging or rebasing may need to check out
   1726 files that aren't included in the sparse checkout.  Call this
   1727 command to reset to the sparse checkout state." t)
   1728 (autoload 'magit-sparse-checkout-disable "magit-sparse-checkout" "\
   1729 Convert sparse checkout to full checkout.
   1730 Note that disabling the sparse checkout does not clear the
   1731 configured directories.  Call `magit-sparse-checkout-enable' to
   1732 restore the previous sparse checkout." t)
   1733 (register-definition-prefixes "magit-sparse-checkout" '("magit-sparse-checkout-"))
   1734 
   1735 
   1736 ;;; Generated autoloads from magit-stash.el
   1737 
   1738  (autoload 'magit-stash "magit-stash" nil t)
   1739 (autoload 'magit-stash-both "magit-stash" "\
   1740 Create a stash of the index and working tree.
   1741 Untracked files are included according to infix arguments.
   1742 One prefix argument is equivalent to `--include-untracked'
   1743 while two prefix arguments are equivalent to `--all'.
   1744 
   1745 (fn MESSAGE &optional INCLUDE-UNTRACKED)" t)
   1746 (autoload 'magit-stash-index "magit-stash" "\
   1747 Create a stash of the index only.
   1748 Unstaged and untracked changes are not stashed.  The stashed
   1749 changes are applied in reverse to both the index and the
   1750 worktree.  This command can fail when the worktree is not clean.
   1751 Applying the resulting stash has the inverse effect.
   1752 
   1753 (fn MESSAGE)" t)
   1754 (autoload 'magit-stash-worktree "magit-stash" "\
   1755 Create a stash of unstaged changes in the working tree.
   1756 Untracked files are included according to infix arguments.
   1757 One prefix argument is equivalent to `--include-untracked'
   1758 while two prefix arguments are equivalent to `--all'.
   1759 
   1760 (fn MESSAGE &optional INCLUDE-UNTRACKED)" t)
   1761 (autoload 'magit-stash-keep-index "magit-stash" "\
   1762 Create a stash of the index and working tree, keeping index intact.
   1763 Untracked files are included according to infix arguments.
   1764 One prefix argument is equivalent to `--include-untracked'
   1765 while two prefix arguments are equivalent to `--all'.
   1766 
   1767 (fn MESSAGE &optional INCLUDE-UNTRACKED)" t)
   1768 (autoload 'magit-snapshot-both "magit-stash" "\
   1769 Create a snapshot of the index and working tree.
   1770 Untracked files are included according to infix arguments.
   1771 One prefix argument is equivalent to `--include-untracked'
   1772 while two prefix arguments are equivalent to `--all'.
   1773 
   1774 (fn &optional INCLUDE-UNTRACKED)" t)
   1775 (autoload 'magit-snapshot-index "magit-stash" "\
   1776 Create a snapshot of the index only.
   1777 Unstaged and untracked changes are not stashed." t)
   1778 (autoload 'magit-snapshot-worktree "magit-stash" "\
   1779 Create a snapshot of unstaged changes in the working tree.
   1780 Untracked files are included according to infix arguments.
   1781 One prefix argument is equivalent to `--include-untracked'
   1782 while two prefix arguments are equivalent to `--all'.
   1783 
   1784 (fn &optional INCLUDE-UNTRACKED)" t)
   1785  (autoload 'magit-stash-push "magit-stash" nil t)
   1786 (autoload 'magit-stash-apply "magit-stash" "\
   1787 Apply a stash to the working tree.
   1788 
   1789 First try \"git stash apply --index\", which tries to preserve
   1790 the index stored in the stash, if any.  This may fail because
   1791 applying the stash could result in conflicts and those have to
   1792 be stored in the index, making it impossible to also store the
   1793 stash's index there as well.
   1794 
   1795 If the above failed, then try \"git stash apply\".  This fails
   1796 (with or without \"--index\") if there are any uncommitted
   1797 changes to files that are also modified in the stash.
   1798 
   1799 If both of the above failed, then apply using \"git apply\".
   1800 If there are no conflicting files, use \"--3way\".  If there are
   1801 conflicting files, then using \"--3way\" requires that those
   1802 files are staged first, which may be undesirable, so prompt
   1803 the user whether to use \"--3way\" or \"--reject\".
   1804 
   1805 (fn STASH)" t)
   1806 (autoload 'magit-stash-pop "magit-stash" "\
   1807 Apply a stash to the working tree, on success remove it from stash list.
   1808 
   1809 First try \"git stash pop --index\", which tries to preserve
   1810 the index stored in the stash, if any.  This may fail because
   1811 applying the stash could result in conflicts and those have to
   1812 be stored in the index, making it impossible to also store the
   1813 stash's index there as well.
   1814 
   1815 If the above failed, then try \"git stash apply\".  This fails
   1816 (with or without \"--index\") if there are any uncommitted
   1817 changes to files that are also modified in the stash.
   1818 
   1819 If both of the above failed, then apply using \"git apply\".
   1820 If there are no conflicting files, use \"--3way\".  If there are
   1821 conflicting files, then using \"--3way\" requires that those
   1822 files are staged first, which may be undesirable, so prompt
   1823 the user whether to use \"--3way\" or \"--reject\".
   1824 
   1825 (fn STASH)" t)
   1826 (autoload 'magit-stash-drop "magit-stash" "\
   1827 Remove a stash from the stash list.
   1828 When the region is active offer to drop all contained stashes.
   1829 
   1830 (fn STASH)" t)
   1831 (autoload 'magit-stash-clear "magit-stash" "\
   1832 Remove all stashes saved in REF's reflog by deleting REF.
   1833 
   1834 (fn REF)" t)
   1835 (autoload 'magit-stash-branch "magit-stash" "\
   1836 Create and checkout a new BRANCH from an existing STASH.
   1837 The new branch starts at the commit that was current when the
   1838 stash was created.  If the stash applies cleanly, then drop it.
   1839 
   1840 (fn STASH BRANCH)" t)
   1841 (autoload 'magit-stash-branch-here "magit-stash" "\
   1842 Create and checkout a new BRANCH from an existing STASH.
   1843 Use the current branch or `HEAD' as the starting-point of BRANCH.
   1844 Then apply STASH, dropping it if it applies cleanly.
   1845 
   1846 (fn STASH BRANCH)" t)
   1847 (autoload 'magit-stash-format-patch "magit-stash" "\
   1848 Create a patch from STASH
   1849 
   1850 (fn STASH)" t)
   1851 (autoload 'magit-stash-list "magit-stash" "\
   1852 List all stashes in a buffer." t)
   1853 (autoload 'magit-stash-show "magit-stash" "\
   1854 Show all diffs of a stash in a buffer.
   1855 
   1856 (fn STASH &optional ARGS FILES)" t)
   1857 (register-definition-prefixes "magit-stash" '("magit-"))
   1858 
   1859 
   1860 ;;; Generated autoloads from magit-status.el
   1861 
   1862 (autoload 'magit-init "magit-status" "\
   1863 Initialize a Git repository, then show its status.
   1864 
   1865 If the directory is below an existing repository, then the user
   1866 has to confirm that a new one should be created inside.  If the
   1867 directory is the root of the existing repository, then the user
   1868 has to confirm that it should be reinitialized.
   1869 
   1870 Non-interactively DIRECTORY is (re-)initialized unconditionally.
   1871 
   1872 (fn DIRECTORY)" t)
   1873 (autoload 'magit-status "magit-status" "\
   1874 Show the status of the current Git repository in a buffer.
   1875 
   1876 If the current directory isn't located within a Git repository,
   1877 then prompt for an existing repository or an arbitrary directory,
   1878 depending on option `magit-repository-directories', and show the
   1879 status of the selected repository instead.
   1880 
   1881 * If that option specifies any existing repositories, then offer
   1882   those for completion and show the status buffer for the
   1883   selected one.
   1884 
   1885 * Otherwise read an arbitrary directory using regular file-name
   1886   completion.  If the selected directory is the top-level of an
   1887   existing working tree, then show the status buffer for that.
   1888 
   1889 * Otherwise offer to initialize the selected directory as a new
   1890   repository.  After creating the repository show its status
   1891   buffer.
   1892 
   1893 These fallback behaviors can also be forced using one or more
   1894 prefix arguments:
   1895 
   1896 * With two prefix arguments (or more precisely a numeric prefix
   1897   value of 16 or greater) read an arbitrary directory and act on
   1898   it as described above.  The same could be accomplished using
   1899   the command `magit-init'.
   1900 
   1901 * With a single prefix argument read an existing repository, or
   1902   if none can be found based on `magit-repository-directories',
   1903   then fall back to the same behavior as with two prefix
   1904   arguments.
   1905 
   1906 (fn &optional DIRECTORY CACHE)" t)
   1907 (defalias 'magit #'magit-status "\
   1908 Begin using Magit.
   1909 
   1910 This alias for `magit-status' exists for better discoverability.
   1911 
   1912 Instead of invoking this alias for `magit-status' using
   1913 \"M-x magit RET\", you should bind a key to `magit-status'
   1914 and read the info node `(magit)Getting Started', which
   1915 also contains other useful hints.")
   1916 (autoload 'magit-status-here "magit-status" "\
   1917 Like `magit-status' but with non-nil `magit-status-goto-file-position'." t)
   1918 (autoload 'magit-status-quick "magit-status" "\
   1919 Show the status of the current Git repository, maybe without refreshing.
   1920 
   1921 If the status buffer of the current Git repository exists but
   1922 isn't being displayed in the selected frame, then display it
   1923 without refreshing it.
   1924 
   1925 If the status buffer is being displayed in the selected frame,
   1926 then also refresh it.
   1927 
   1928 Prefix arguments have the same meaning as for `magit-status',
   1929 and additionally cause the buffer to be refresh.
   1930 
   1931 To use this function instead of `magit-status', add this to your
   1932 init file: (global-set-key (kbd \"C-x g\") \\='magit-status-quick)." t)
   1933 (autoload 'magit-status-setup-buffer "magit-status" "\
   1934 
   1935 
   1936 (fn &optional DIRECTORY)")
   1937 (register-definition-prefixes "magit-status" '("magit-"))
   1938 
   1939 
   1940 ;;; Generated autoloads from magit-submodule.el
   1941 
   1942  (autoload 'magit-submodule "magit-submodule" nil t)
   1943  (autoload 'magit-submodule-add "magit-submodule" nil t)
   1944 (autoload 'magit-submodule-read-name-for-path "magit-submodule" "\
   1945 
   1946 
   1947 (fn PATH &optional PREFER-SHORT)")
   1948  (autoload 'magit-submodule-register "magit-submodule" nil t)
   1949  (autoload 'magit-submodule-populate "magit-submodule" nil t)
   1950  (autoload 'magit-submodule-update "magit-submodule" nil t)
   1951  (autoload 'magit-submodule-synchronize "magit-submodule" nil t)
   1952  (autoload 'magit-submodule-unpopulate "magit-submodule" nil t)
   1953 (autoload 'magit-submodule-remove "magit-submodule" "\
   1954 Unregister MODULES and remove their working directories.
   1955 
   1956 For safety reasons, do not remove the gitdirs and if a module has
   1957 uncommitted changes, then do not remove it at all.  If a module's
   1958 gitdir is located inside the working directory, then move it into
   1959 the gitdir of the superproject first.
   1960 
   1961 With the \"--force\" argument offer to remove dirty working
   1962 directories and with a prefix argument offer to delete gitdirs.
   1963 Both actions are very dangerous and have to be confirmed.  There
   1964 are additional safety precautions in place, so you might be able
   1965 to recover from making a mistake here, but don't count on it.
   1966 
   1967 (fn MODULES ARGS TRASH-GITDIRS)" t)
   1968 (autoload 'magit-insert-modules "magit-submodule" "\
   1969 Insert submodule sections.
   1970 Hook `magit-module-sections-hook' controls which module sections
   1971 are inserted, and option `magit-module-sections-nested' controls
   1972 whether they are wrapped in an additional section.")
   1973 (autoload 'magit-insert-modules-overview "magit-submodule" "\
   1974 Insert sections for all modules.
   1975 For each section insert the path and the output of `git describe --tags',
   1976 or, failing that, the abbreviated HEAD commit hash.")
   1977 (autoload 'magit-insert-modules-unpulled-from-upstream "magit-submodule" "\
   1978 Insert sections for modules that haven't been pulled from the upstream.
   1979 These sections can be expanded to show the respective commits.")
   1980 (autoload 'magit-insert-modules-unpulled-from-pushremote "magit-submodule" "\
   1981 Insert sections for modules that haven't been pulled from the push-remote.
   1982 These sections can be expanded to show the respective commits.")
   1983 (autoload 'magit-insert-modules-unpushed-to-upstream "magit-submodule" "\
   1984 Insert sections for modules that haven't been pushed to the upstream.
   1985 These sections can be expanded to show the respective commits.")
   1986 (autoload 'magit-insert-modules-unpushed-to-pushremote "magit-submodule" "\
   1987 Insert sections for modules that haven't been pushed to the push-remote.
   1988 These sections can be expanded to show the respective commits.")
   1989 (autoload 'magit-list-submodules "magit-submodule" "\
   1990 Display a list of the current repository's populated submodules." t)
   1991 (register-definition-prefixes "magit-submodule" '("magit-"))
   1992 
   1993 
   1994 ;;; Generated autoloads from magit-subtree.el
   1995 
   1996  (autoload 'magit-subtree "magit-subtree" nil t)
   1997  (autoload 'magit-subtree-import "magit-subtree" nil t)
   1998  (autoload 'magit-subtree-export "magit-subtree" nil t)
   1999 (autoload 'magit-subtree-add "magit-subtree" "\
   2000 Add REF from REPOSITORY as a new subtree at PREFIX.
   2001 
   2002 (fn PREFIX REPOSITORY REF ARGS)" t)
   2003 (autoload 'magit-subtree-add-commit "magit-subtree" "\
   2004 Add COMMIT as a new subtree at PREFIX.
   2005 
   2006 (fn PREFIX COMMIT ARGS)" t)
   2007 (autoload 'magit-subtree-merge "magit-subtree" "\
   2008 Merge COMMIT into the PREFIX subtree.
   2009 
   2010 (fn PREFIX COMMIT ARGS)" t)
   2011 (autoload 'magit-subtree-pull "magit-subtree" "\
   2012 Pull REF from REPOSITORY into the PREFIX subtree.
   2013 
   2014 (fn PREFIX REPOSITORY REF ARGS)" t)
   2015 (autoload 'magit-subtree-push "magit-subtree" "\
   2016 Extract the history of the subtree PREFIX and push it to REF on REPOSITORY.
   2017 
   2018 (fn PREFIX REPOSITORY REF ARGS)" t)
   2019 (autoload 'magit-subtree-split "magit-subtree" "\
   2020 Extract the history of the subtree PREFIX.
   2021 
   2022 (fn PREFIX COMMIT ARGS)" t)
   2023 (register-definition-prefixes "magit-subtree" '("magit-"))
   2024 
   2025 
   2026 ;;; Generated autoloads from magit-tag.el
   2027 
   2028  (autoload 'magit-tag "magit" nil t)
   2029 (autoload 'magit-tag-create "magit-tag" "\
   2030 Create a new tag with the given NAME at REV.
   2031 With a prefix argument annotate the tag.
   2032 
   2033 (git tag [--annotate] NAME REV)
   2034 
   2035 (fn NAME REV &optional ARGS)" t)
   2036 (autoload 'magit-tag-delete "magit-tag" "\
   2037 Delete one or more tags.
   2038 If the region marks multiple tags (and nothing else), then offer
   2039 to delete those, otherwise prompt for a single tag to be deleted,
   2040 defaulting to the tag at point.
   2041 
   2042 (git tag -d TAGS)
   2043 
   2044 (fn TAGS)" t)
   2045 (autoload 'magit-tag-prune "magit-tag" "\
   2046 Offer to delete tags missing locally from REMOTE, and vice versa.
   2047 
   2048 (fn TAGS REMOTE-TAGS REMOTE)" t)
   2049 (autoload 'magit-tag-release "magit-tag" "\
   2050 Create a release tag for `HEAD'.
   2051 
   2052 Assume that release tags match `magit-release-tag-regexp'.
   2053 
   2054 If `HEAD's message matches `magit-release-commit-regexp', then
   2055 base the tag on the version string specified by that.  Otherwise
   2056 prompt for the name of the new tag using the highest existing
   2057 tag as initial input and leaving it to the user to increment the
   2058 desired part of the version string.
   2059 
   2060 If `--annotate' is enabled, then prompt for the message of the
   2061 new tag.  Base the proposed tag message on the message of the
   2062 highest tag, provided that that contains the corresponding
   2063 version string and substituting the new version string for that.
   2064 Otherwise propose something like \"Foo-Bar 1.2.3\", given, for
   2065 example, a TAG \"v1.2.3\" and a repository located at something
   2066 like \"/path/to/foo-bar\".
   2067 
   2068 (fn TAG MSG &optional ARGS)" t)
   2069 (register-definition-prefixes "magit-tag" '("magit-"))
   2070 
   2071 
   2072 ;;; Generated autoloads from magit-transient.el
   2073 
   2074 (register-definition-prefixes "magit-transient" '("magit-"))
   2075 
   2076 
   2077 ;;; Generated autoloads from magit-wip.el
   2078 
   2079 (defvar magit-wip-mode nil "\
   2080 Non-nil if Magit-Wip mode is enabled.
   2081 See the `magit-wip-mode' command
   2082 for a description of this minor mode.
   2083 Setting this variable directly does not take effect;
   2084 either customize it (see the info node `Easy Customization')
   2085 or call the function `magit-wip-mode'.")
   2086 (custom-autoload 'magit-wip-mode "magit-wip" nil)
   2087 (autoload 'magit-wip-mode "magit-wip" "\
   2088 Save uncommitted changes to work-in-progress refs.
   2089 
   2090 Whenever appropriate (i.e., when dataloss would be a possibility
   2091 otherwise) this mode causes uncommitted changes to be committed
   2092 to dedicated work-in-progress refs.
   2093 
   2094 For historic reasons this mode is implemented on top of four
   2095 other `magit-wip-*' modes, which can also be used individually,
   2096 if you want finer control over when the wip refs are updated;
   2097 but that is discouraged.
   2098 
   2099 This is a global minor mode.  If called interactively, toggle the
   2100 `Magit-Wip mode' mode.  If the prefix argument is positive,
   2101 enable the mode, and if it is zero or negative, disable the mode.
   2102 
   2103 If called from Lisp, toggle the mode if ARG is `toggle'.  Enable
   2104 the mode if ARG is nil, omitted, or is a positive number.
   2105 Disable the mode if ARG is a negative number.
   2106 
   2107 To check whether the minor mode is enabled in the current buffer,
   2108 evaluate `(default-value \\='magit-wip-mode)'.
   2109 
   2110 The mode's hook is called both when the mode is enabled and when
   2111 it is disabled.
   2112 
   2113 (fn &optional ARG)" t)
   2114 (put 'magit-wip-after-save-mode 'globalized-minor-mode t)
   2115 (defvar magit-wip-after-save-mode nil "\
   2116 Non-nil if Magit-Wip-After-Save mode is enabled.
   2117 See the `magit-wip-after-save-mode' command
   2118 for a description of this minor mode.
   2119 Setting this variable directly does not take effect;
   2120 either customize it (see the info node `Easy Customization')
   2121 or call the function `magit-wip-after-save-mode'.")
   2122 (custom-autoload 'magit-wip-after-save-mode "magit-wip" nil)
   2123 (autoload 'magit-wip-after-save-mode "magit-wip" "\
   2124 Toggle Magit-Wip-After-Save-Local mode in all buffers.
   2125 With prefix ARG, enable Magit-Wip-After-Save mode if ARG is positive; otherwise,
   2126 disable it.
   2127 
   2128 If called from Lisp, toggle the mode if ARG is `toggle'.
   2129 Enable the mode if ARG is nil, omitted, or is a positive number.
   2130 Disable the mode if ARG is a negative number.
   2131 
   2132 Magit-Wip-After-Save-Local mode is enabled in all buffers where
   2133 `magit-wip-after-save-local-mode-turn-on' would do it.
   2134 
   2135 See `magit-wip-after-save-local-mode' for more information on
   2136 Magit-Wip-After-Save-Local mode.
   2137 
   2138 (fn &optional ARG)" t)
   2139 (defvar magit-wip-after-apply-mode nil "\
   2140 Non-nil if Magit-Wip-After-Apply mode is enabled.
   2141 See the `magit-wip-after-apply-mode' command
   2142 for a description of this minor mode.")
   2143 (custom-autoload 'magit-wip-after-apply-mode "magit-wip" nil)
   2144 (autoload 'magit-wip-after-apply-mode "magit-wip" "\
   2145 Commit to work-in-progress refs.
   2146 
   2147 After applying a change using any \"apply variant\"
   2148 command (apply, stage, unstage, discard, and reverse) commit the
   2149 affected files to the current wip refs.  For each branch there
   2150 may be two wip refs; one contains snapshots of the files as found
   2151 in the worktree and the other contains snapshots of the entries
   2152 in the index.
   2153 
   2154 This is a global minor mode.  If called interactively, toggle the
   2155 `Magit-Wip-After-Apply mode' mode.  If the prefix argument is
   2156 positive, enable the mode, and if it is zero or negative, disable
   2157 the mode.
   2158 
   2159 If called from Lisp, toggle the mode if ARG is `toggle'.  Enable
   2160 the mode if ARG is nil, omitted, or is a positive number.
   2161 Disable the mode if ARG is a negative number.
   2162 
   2163 To check whether the minor mode is enabled in the current buffer,
   2164 evaluate `(default-value \\='magit-wip-after-apply-mode)'.
   2165 
   2166 The mode's hook is called both when the mode is enabled and when
   2167 it is disabled.
   2168 
   2169 (fn &optional ARG)" t)
   2170 (defvar magit-wip-before-change-mode nil "\
   2171 Non-nil if Magit-Wip-Before-Change mode is enabled.
   2172 See the `magit-wip-before-change-mode' command
   2173 for a description of this minor mode.")
   2174 (custom-autoload 'magit-wip-before-change-mode "magit-wip" nil)
   2175 (autoload 'magit-wip-before-change-mode "magit-wip" "\
   2176 Commit to work-in-progress refs before certain destructive changes.
   2177 
   2178 Before invoking a revert command or an \"apply variant\"
   2179 command (apply, stage, unstage, discard, and reverse) commit the
   2180 affected tracked files to the current wip refs.  For each branch
   2181 there may be two wip refs; one contains snapshots of the files
   2182 as found in the worktree and the other contains snapshots of the
   2183 entries in the index.
   2184 
   2185 Only changes to files which could potentially be affected by the
   2186 command which is about to be called are committed.
   2187 
   2188 This is a global minor mode.  If called interactively, toggle the
   2189 `Magit-Wip-Before-Change mode' mode.  If the prefix argument is
   2190 positive, enable the mode, and if it is zero or negative, disable
   2191 the mode.
   2192 
   2193 If called from Lisp, toggle the mode if ARG is `toggle'.  Enable
   2194 the mode if ARG is nil, omitted, or is a positive number.
   2195 Disable the mode if ARG is a negative number.
   2196 
   2197 To check whether the minor mode is enabled in the current buffer,
   2198 evaluate `(default-value \\='magit-wip-before-change-mode)'.
   2199 
   2200 The mode's hook is called both when the mode is enabled and when
   2201 it is disabled.
   2202 
   2203 (fn &optional ARG)" t)
   2204 (autoload 'magit-wip-commit-initial-backup "magit-wip" "\
   2205 Before saving, commit current file to a worktree wip ref.
   2206 
   2207 The user has to add this function to `before-save-hook'.
   2208 
   2209 Commit the current state of the visited file before saving the
   2210 current buffer to that file.  This backs up the same version of
   2211 the file as `backup-buffer' would, but stores the backup in the
   2212 worktree wip ref, which is also used by the various Magit Wip
   2213 modes, instead of in a backup file as `backup-buffer' would.
   2214 
   2215 This function ignores the variables that affect `backup-buffer'
   2216 and can be used along-side that function, which is recommended
   2217 because this function only backs up files that are tracked in
   2218 a Git repository.")
   2219 (register-definition-prefixes "magit-wip" '("magit-"))
   2220 
   2221 
   2222 ;;; Generated autoloads from magit-worktree.el
   2223 
   2224  (autoload 'magit-worktree "magit-worktree" nil t)
   2225 (autoload 'magit-worktree-checkout "magit-worktree" "\
   2226 Checkout BRANCH in a new worktree at PATH.
   2227 
   2228 (fn PATH BRANCH)" t)
   2229 (autoload 'magit-worktree-branch "magit-worktree" "\
   2230 Create a new BRANCH and check it out in a new worktree at PATH.
   2231 
   2232 (fn PATH BRANCH START-POINT &optional FORCE)" t)
   2233 (autoload 'magit-worktree-move "magit-worktree" "\
   2234 Move WORKTREE to PATH.
   2235 
   2236 (fn WORKTREE PATH)" t)
   2237 (register-definition-prefixes "magit-worktree" '("magit-"))
   2238 
   2239 ;;; End of scraped data
   2240 
   2241 (provide 'magit-autoloads)
   2242 
   2243 ;; Local Variables:
   2244 ;; version-control: never
   2245 ;; no-byte-compile: t
   2246 ;; no-update-autoloads: t
   2247 ;; no-native-compile: t
   2248 ;; coding: utf-8-emacs-unix
   2249 ;; End:
   2250 
   2251 ;;; magit-autoloads.el ends here