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

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