summaryrefslogtreecommitdiff
path: root/lisp/init-git.el
AgeCommit message (Collapse)Author
2014-12-30Add display-only version of git-rebase-show-commitKyle Meyer
Bind this version to SPC. This is more consistent with behavior in the log buffer, where RET shows the commit and switches to that buffer and SPC just displays the commit. However, the SPC variants still differ in their scrolling behavior. In the log buffer, SPC (magit-diff-show-or-scroll-up) will scroll if the buffer is already displayed, but km/git-rebase-show-commit doesn't support this. While it'd be nice to use magit-diff-show-or-scroll-up directly, this isn't easy to do because magit-diff-show-or-scroll-up doesn't take a revision argument (it pulls it directly from the magit section).
2014-12-23Bind magit-diff-visit-file-worktree to C-jKyle Meyer
2014-12-23Add command magit-mode-quit-all-windowsKyle Meyer
2014-12-09Update magit-status advice for renamed functionKyle Meyer
Magit commit 23f4f8dd3abe4dd7ee57d8edd62421f1f2c6daea introduced magit-status-internal.
2014-12-01Add command magit-ff-merge-upstreamKyle Meyer
2014-11-30Use Cask and Pallet to manage packagesKyle Meyer
2014-11-30Use slashes after all directory namesKyle Meyer
2014-11-30Remove vendor directoryKyle Meyer
2014-11-26Update for git-commit-mode renameKyle Meyer
2014-11-21Allow flags in magit-push-headKyle Meyer
2014-11-20Stop quoting lambdasKyle Meyer
2014-11-18Update Magit and git-modes setupKyle Meyer
Magit now contains git-commit-mode.el, git-rebase-model.el, and with-editor.el from the git-modes repo. Magit commit 6e601926278a833baed7a9f44f7f6a360be203da
2014-11-18Add magit-push-head commandKyle Meyer
2014-11-16Update magit-log-all-branches for upstream changesKyle Meyer
Magit commit 893e2fea941335f1f428c2e1f996e42822b0fe59
2014-11-09Update magit-log-all-branches for upstream changesKyle Meyer
Magit has removed magit-log-dwim [1] and changed the arguments to magit-log-read-args [2]. [1] e0979bb6bd22a9ce5009a7cdf458034e52817da3 [2] 5737de048843bbad83f16ea13f57d69cdbe6971e
2014-11-09Don't show tags in Magit refs bufferKyle Meyer
This is slow for repos that contain lots of tags.
2014-11-06Unset magit-delete-by-moving-to-trashKyle Meyer
2014-10-25Rephrase docstringKyle Meyer
2014-10-24Load orgitKyle Meyer
2014-10-22Go crazy with anaphoric formsKyle Meyer
2014-10-19Disable magit-backup-modeKyle Meyer
As of Magit c268e7f, backups won't occur if the mode is disabled.
2014-10-18Add command magit-commit-extend-allKyle Meyer
2014-10-18Expand magit-auto-commit docstringKyle Meyer
2014-10-18Add command magit-stage-file-intentKyle Meyer
2014-10-17Add command magit-show-project-commit-under-pointKyle Meyer
2014-10-17Add command magit-show-commit-under-pointKyle Meyer
2014-10-17Create a prefix-map for git-related functionsKyle Meyer
2014-10-17Remove binding of undefined prefix mapKyle Meyer
2014-10-11Unset magit-backup-untrackedKyle Meyer
2014-10-10magit-annex: Unset default '--auto' flagKyle Meyer
2014-09-30Turn on flyspell in Magit commit bufferKyle Meyer
This was deactivated in git-commit-mode.el (0670764).
2014-09-30Fix use of magit-find-file-hookKyle Meyer
2014-09-22Always set --no-ff with magit-merge-editmsgKyle Meyer
2014-09-16Unbind magit-add-change-log-entry-other-windowKyle Meyer
2014-09-12Update for Magit name changeKyle Meyer
Commit c1a79dc changed `magit-TOPIC-popup-defaults' to `magit-TOPIC-arguments'.
2014-09-12Add magit-checkout-masterKyle Meyer
2014-09-10Set magit-popup-use-prefix-argument to defaultKyle Meyer
2014-09-02Add magit-checkout-previous-branchKyle Meyer
2014-09-02Change Magit function docstringsKyle Meyer
Make the git line consistent with Magit.
2014-09-02Add magit-branch-and-checkout-from-currentKyle Meyer
Bind to 'c' in popup menu, and rebind magit-branch from 'c' to 'C'.
2014-09-02Reindent magit-define-pop-action callsKyle Meyer
2014-09-01Turn on view-mode after magit-find-fileKyle Meyer
2014-08-28Add file-map prefix commandKyle Meyer
This prefix will be used for find-file functions that don't already have a shorter keybinding. This commit adds two functions to the map, `view-file' and `magit-find-file', which both have an other-window analog in `ctl-x-4-map'. View mode can be accessed using ',v' right after finding a file, so the `view-file' binding might not be too useful. `magit-find-file' was in my magit-specific map, but it makes sense to have it here because it's useful in buffers outside the magit status buffer.
2014-08-27Remove '--track' from magit-branch-popup-defaultsKyle Meyer
2014-07-30Install git timemachineKyle Meyer
2014-07-23Add binding for magit-find-fileKyle Meyer
2014-07-23Add magit-find-file-other-window to ctl-x-4-mapKyle Meyer
2014-07-08Update magit-annex initializationKyle Meyer
2014-07-01Use Magit autoloadsKyle Meyer
2014-06-09Add km/magit-backup-branchKyle Meyer