;;; 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 ;; ;;; Crashkurs: ;; M-x magit-status führt bei Bedarf auch magit-init aus ;; s files für stage auswählen ;; c c commit, anschließend kommt Fenster mit Commit-Message ;; C-c C-c tatsächlich git-commit ;; ;;; Code: (use-package magit :ensure t) (provide 'plugin-magit) ;;; plugin-magit ends here