mirror of
https://codeberg.org/gwh/slackbuilds.git
synced 2024-11-16 19:51:19 +01:00
(changes)
This commit is contained in:
parent
905a76f91c
commit
6729ebcb12
1 changed files with 8 additions and 7 deletions
|
@ -36,6 +36,13 @@
|
|||
;; Maybe there will be some support for history browsing in the
|
||||
;; future.
|
||||
|
||||
;;; TODO
|
||||
|
||||
;; - Fontifying diffs
|
||||
;; - Staging/unstaging hunks
|
||||
;; - Untracked files
|
||||
;; - Removing files
|
||||
|
||||
;;; Utilities
|
||||
|
||||
(defun gits-shell (cmd &rest args)
|
||||
|
@ -150,12 +157,6 @@
|
|||
(setq default-directory dir)
|
||||
(gits-update-status)))
|
||||
|
||||
(defun git-show-status ()
|
||||
(interactive)
|
||||
(let ((buf (get-buffer-create "*git-status*")))
|
||||
(switch-to-buffer buf)
|
||||
(gits-update-status)))
|
||||
|
||||
(defun git-pull ()
|
||||
(interactive)
|
||||
(gits-run "git-pull"))
|
||||
|
@ -166,7 +167,7 @@
|
|||
|
||||
(defun git-stage-all ()
|
||||
(interactive)
|
||||
(gits-run "git-add" "."))
|
||||
(gits-run "git-add" "-u" "."))
|
||||
|
||||
(defun git-commit ()
|
||||
(interactive)
|
||||
|
|
Loading…
Reference in a new issue