Overview
Magit is the integrated Git Package for Emacs. You can use the full Git functionalty from inside Emacs.
Content
Basic Commands
C-x g
- open the status bufferg
- refresh the status buffercursor on commit - RET
- show commit detailsq
- quit Magit buffercursor on commit - d - d
- show dif of commit
Init Git Project
- in a non-git project dir →
C-x g
- choose dir to create project from
Connect to a existing Repository
- in Magit status buffer (
C-x g
)M
- open Remotes buffera
- add Remote- choose name (origin)
- add URL from GitHub or other service
- now you can Fetch from the Remote Repo
F
- for Fetch Buffer
- or Push directly to it
P
- open Push Buffer
Adding and Commiting
- call / refresh the status buffer
C-x g
- open status bufferg
- refresh the status buffer
- stage changes
cursor on change - s
- stage a single changeS
- stage all changescursor on staged change - u
- unstage single changeU
- unstage all changes
- commit changes
c c
- commit changes- add description
- first line: headline
- third line: description
C-c C-c
- finish commit
Push Changes to Repository
P
- open push buffer
Branching
Create a new branch
b
- open branch overviewn
- for new branch- choose a branch from which you want to create a new branch
- give it a name
b l
- checkout new branch
Merging
- go to branch you want to merge to
b
- open branch overviewl
- choose local branch
- open merge overview
m
m
- choose branch to merge from
Pulling
F
- open pull overview
Stashing
z
- stash menu
Checkout
Checkout Commit
l l
- go to log menu on current branch- set cursor on commit you want to checkout
b b
and choos commit id