You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

25 lines
539 B

;;; plugin-magit --- Summary
;;; Commentary:
;; https://magit.vc/manual/magit/index.html
;;
;; M-x magit-init initiiert repository und zeigt status buffer
;; M-x magit-status
;;
;; im Statusbuffer:
;; s stage files
;; u unstage files
;; U unstage all
;; a apply changed to staging
;; c c commit (Nachricht schreiben, dann C-c C-c zum echten commit)
;; b b switch to another branch
;; P u git push
;; F u git pull
;;
;;; Code:
(use-package magit
:ensure t)
(provide 'plugin-magit)
;;; plugin-magit ends here