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.

21 lines
467 B

  1. ;; Anleitung
  2. ;; https://magit.vc/manual/magit/index.html
  3. ;;
  4. ;; M-x magit-init initiiert repository und zeigt status buffer
  5. ;; M-x magit-status
  6. ;;
  7. ;; im Statusbuffer:
  8. ;; s stage files
  9. ;; u unstage files
  10. ;; U unstage all
  11. ;; a apply changed to staging
  12. ;; c c commit (Nachricht schreiben, dann C-c C-c zum echten commit)
  13. ;; b b switch to another branch
  14. ;; P u git push
  15. ;; F u git pull
  16. (use-package magit
  17. :ensure t)
  18. (provide 'plugin-magit)