mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-10 04:07:18 +02:00
630de34bf2
We were inconsistent about "rename" vs "reword" for commits. reword is the term used in git itself (for example, in rebase).
288 lines
8.0 KiB
Markdown
288 lines
8.0 KiB
Markdown
# Lazygit Keybindings
|
|
|
|
## Global Keybindings
|
|
|
|
<pre>
|
|
<kbd>ctrl+r</kbd>: switch to a recent repo (<c-r>)
|
|
<kbd>pgup</kbd>: scroll up main panel (fn+up)
|
|
<kbd>pgdown</kbd>: scroll down main panel (fn+down)
|
|
<kbd>m</kbd>: view merge/rebase options
|
|
<kbd>ctrl+p</kbd>: view custom patch options
|
|
<kbd>P</kbd>: push
|
|
<kbd>p</kbd>: pull
|
|
<kbd>R</kbd>: refresh
|
|
<kbd>x</kbd>: open menu
|
|
<kbd>z</kbd>: undo (via reflog) (experimental)
|
|
<kbd>ctrl+z</kbd>: redo (via reflog) (experimental)
|
|
<kbd>+</kbd>: next screen mode (normal/half/fullscreen)
|
|
<kbd>_</kbd>: prev screen mode
|
|
<kbd>:</kbd>: execute custom command
|
|
<kbd>ctrl+s</kbd>: view filter-by-path options
|
|
<kbd>W</kbd>: open diff menu
|
|
<kbd>ctrl+e</kbd>: open diff menu
|
|
<kbd>@</kbd>: open command log menu
|
|
</pre>
|
|
|
|
## List Panel Navigation
|
|
|
|
<pre>
|
|
<kbd>.</kbd>: next page
|
|
<kbd>,</kbd>: previous page
|
|
<kbd><</kbd>: scroll to top
|
|
<kbd>></kbd>: scroll to bottom
|
|
<kbd>/</kbd>: start search
|
|
<kbd>]</kbd>: next tab
|
|
<kbd>[</kbd>: previous tab
|
|
</pre>
|
|
|
|
## Branches Panel (Branches Tab)
|
|
|
|
<pre>
|
|
<kbd>space</kbd>: checkout
|
|
<kbd>o</kbd>: create pull request
|
|
<kbd>O</kbd>: create pull request options
|
|
<kbd>ctrl+y</kbd>: copy pull request URL to clipboard
|
|
<kbd>c</kbd>: checkout by name
|
|
<kbd>F</kbd>: force checkout
|
|
<kbd>n</kbd>: new branch
|
|
<kbd>d</kbd>: delete branch
|
|
<kbd>r</kbd>: rebase checked-out branch onto this branch
|
|
<kbd>M</kbd>: merge into currently checked out branch
|
|
<kbd>i</kbd>: show git-flow options
|
|
<kbd>f</kbd>: fast-forward this branch from its upstream
|
|
<kbd>g</kbd>: view reset options
|
|
<kbd>R</kbd>: rename branch
|
|
<kbd>ctrl+o</kbd>: copy branch name to clipboard
|
|
<kbd>enter</kbd>: view commits
|
|
</pre>
|
|
|
|
## Branches Panel (Remote Branches (in Remotes tab))
|
|
|
|
<pre>
|
|
<kbd>esc</kbd>: Return to remotes list
|
|
<kbd>g</kbd>: view reset options
|
|
<kbd>enter</kbd>: view commits
|
|
<kbd>space</kbd>: checkout
|
|
<kbd>n</kbd>: new branch
|
|
<kbd>M</kbd>: merge into currently checked out branch
|
|
<kbd>d</kbd>: delete branch
|
|
<kbd>r</kbd>: rebase checked-out branch onto this branch
|
|
<kbd>u</kbd>: set as upstream of checked-out branch
|
|
</pre>
|
|
|
|
## Branches Panel (Remotes Tab)
|
|
|
|
<pre>
|
|
<kbd>f</kbd>: fetch remote
|
|
<kbd>n</kbd>: add new remote
|
|
<kbd>d</kbd>: remove remote
|
|
<kbd>e</kbd>: edit remote
|
|
</pre>
|
|
|
|
## Branches Panel (Sub-commits)
|
|
|
|
<pre>
|
|
<kbd>enter</kbd>: view commit's files
|
|
<kbd>space</kbd>: checkout commit
|
|
<kbd>g</kbd>: view reset options
|
|
<kbd>n</kbd>: new branch
|
|
<kbd>c</kbd>: copy commit (cherry-pick)
|
|
<kbd>C</kbd>: copy commit range (cherry-pick)
|
|
<kbd>ctrl+r</kbd>: reset cherry-picked (copied) commits selection
|
|
<kbd>ctrl+o</kbd>: copy commit SHA to clipboard
|
|
</pre>
|
|
|
|
## Branches Panel (Tags Tab)
|
|
|
|
<pre>
|
|
<kbd>space</kbd>: checkout
|
|
<kbd>d</kbd>: delete tag
|
|
<kbd>P</kbd>: push tag
|
|
<kbd>n</kbd>: create tag
|
|
<kbd>g</kbd>: view reset options
|
|
<kbd>enter</kbd>: view commits
|
|
</pre>
|
|
|
|
## Commit Files Panel
|
|
|
|
<pre>
|
|
<kbd>ctrl+o</kbd>: copy the committed file name to the clipboard
|
|
<kbd>c</kbd>: checkout file
|
|
<kbd>d</kbd>: discard this commit's changes to this file
|
|
<kbd>o</kbd>: open file
|
|
<kbd>e</kbd>: edit file
|
|
<kbd>space</kbd>: toggle file included in patch
|
|
<kbd>enter</kbd>: enter file to add selected lines to the patch (or toggle directory collapsed)
|
|
<kbd>`</kbd>: toggle file tree view
|
|
</pre>
|
|
|
|
## Commits Panel (Commits)
|
|
|
|
<pre>
|
|
<kbd>s</kbd>: squash down
|
|
<kbd>r</kbd>: reword commit
|
|
<kbd>R</kbd>: reword commit with editor
|
|
<kbd>g</kbd>: reset to this commit
|
|
<kbd>f</kbd>: fixup commit
|
|
<kbd>F</kbd>: create fixup commit for this commit
|
|
<kbd>S</kbd>: squash all 'fixup!' commits above selected commit (autosquash)
|
|
<kbd>d</kbd>: delete commit
|
|
<kbd>ctrl+j</kbd>: move commit down one
|
|
<kbd>ctrl+k</kbd>: move commit up one
|
|
<kbd>e</kbd>: edit commit
|
|
<kbd>A</kbd>: amend commit with staged changes
|
|
<kbd>p</kbd>: pick commit (when mid-rebase)
|
|
<kbd>t</kbd>: revert commit
|
|
<kbd>c</kbd>: copy commit (cherry-pick)
|
|
<kbd>ctrl+o</kbd>: copy commit SHA to clipboard
|
|
<kbd>C</kbd>: copy commit range (cherry-pick)
|
|
<kbd>v</kbd>: paste commits (cherry-pick)
|
|
<kbd>enter</kbd>: view commit's files
|
|
<kbd>space</kbd>: checkout commit
|
|
<kbd>n</kbd>: create new branch off of commit
|
|
<kbd>T</kbd>: tag commit
|
|
<kbd>ctrl+r</kbd>: reset cherry-picked (copied) commits selection
|
|
<kbd>ctrl+y</kbd>: copy commit message to clipboard
|
|
</pre>
|
|
|
|
## Commits Panel (Reflog Tab)
|
|
|
|
<pre>
|
|
<kbd>enter</kbd>: view commit's files
|
|
<kbd>space</kbd>: checkout commit
|
|
<kbd>g</kbd>: view reset options
|
|
<kbd>c</kbd>: copy commit (cherry-pick)
|
|
<kbd>C</kbd>: copy commit range (cherry-pick)
|
|
<kbd>ctrl+r</kbd>: reset cherry-picked (copied) commits selection
|
|
<kbd>ctrl+o</kbd>: copy commit SHA to clipboard
|
|
</pre>
|
|
|
|
## Extras Panel
|
|
|
|
<pre>
|
|
<kbd>@</kbd>: open command log menu
|
|
</pre>
|
|
|
|
## Files Panel (Files)
|
|
|
|
<pre>
|
|
<kbd>c</kbd>: commit changes
|
|
<kbd>w</kbd>: commit changes without pre-commit hook
|
|
<kbd>A</kbd>: amend last commit
|
|
<kbd>C</kbd>: commit changes using git editor
|
|
<kbd>space</kbd>: toggle staged
|
|
<kbd>d</kbd>: view 'discard changes' options
|
|
<kbd>e</kbd>: edit file
|
|
<kbd>o</kbd>: open file
|
|
<kbd>i</kbd>: add to .gitignore
|
|
<kbd>r</kbd>: refresh files
|
|
<kbd>s</kbd>: stash changes
|
|
<kbd>S</kbd>: view stash options
|
|
<kbd>a</kbd>: stage/unstage all
|
|
<kbd>D</kbd>: view reset options
|
|
<kbd>enter</kbd>: stage individual hunks/lines for file, or collapse/expand for directory
|
|
<kbd>f</kbd>: fetch
|
|
<kbd>ctrl+o</kbd>: copy the file name to the clipboard
|
|
<kbd>g</kbd>: view upstream reset options
|
|
<kbd>`</kbd>: toggle file tree view
|
|
<kbd>M</kbd>: open external merge tool (git mergetool)
|
|
<kbd>ctrl+w</kbd>: Toggle whether or not whitespace changes are shown in the diff view
|
|
</pre>
|
|
|
|
## Files Panel (Submodules)
|
|
|
|
<pre>
|
|
<kbd>ctrl+o</kbd>: copy submodule name to clipboard
|
|
<kbd>enter</kbd>: enter submodule
|
|
<kbd>d</kbd>: view reset and remove submodule options
|
|
<kbd>u</kbd>: update submodule
|
|
<kbd>n</kbd>: add new submodule
|
|
<kbd>e</kbd>: update submodule URL
|
|
<kbd>i</kbd>: initialize submodule
|
|
<kbd>b</kbd>: view bulk submodule options
|
|
</pre>
|
|
|
|
## Main Panel (Merging)
|
|
|
|
<pre>
|
|
<kbd>esc</kbd>: return to files panel
|
|
<kbd>M</kbd>: open external merge tool (git mergetool)
|
|
<kbd>space</kbd>: pick hunk
|
|
<kbd>b</kbd>: pick all hunks
|
|
<kbd>◄</kbd>: select previous conflict
|
|
<kbd>►</kbd>: select next conflict
|
|
<kbd>▲</kbd>: select previous hunk
|
|
<kbd>▼</kbd>: select next hunk
|
|
<kbd>z</kbd>: undo
|
|
</pre>
|
|
|
|
## Main Panel (Normal)
|
|
|
|
<pre>
|
|
<kbd>Ő</kbd>: scroll down (fn+up)
|
|
<kbd>ő</kbd>: scroll up (fn+down)
|
|
</pre>
|
|
|
|
## Main Panel (Patch Building)
|
|
|
|
<pre>
|
|
<kbd>esc</kbd>: exit line-by-line mode
|
|
<kbd>o</kbd>: open file
|
|
<kbd>▲</kbd>: select previous line
|
|
<kbd>▼</kbd>: select next line
|
|
<kbd>◄</kbd>: select previous hunk
|
|
<kbd>►</kbd>: select next hunk
|
|
<kbd>space</kbd>: add/remove line(s) to patch
|
|
<kbd>v</kbd>: toggle drag select
|
|
<kbd>V</kbd>: toggle drag select
|
|
<kbd>a</kbd>: toggle select hunk
|
|
</pre>
|
|
|
|
## Main Panel (Staging)
|
|
|
|
<pre>
|
|
<kbd>esc</kbd>: return to files panel
|
|
<kbd>space</kbd>: toggle line staged / unstaged
|
|
<kbd>d</kbd>: delete change (git reset)
|
|
<kbd>tab</kbd>: switch to other panel
|
|
<kbd>o</kbd>: open file
|
|
<kbd>▲</kbd>: select previous line
|
|
<kbd>▼</kbd>: select next line
|
|
<kbd>◄</kbd>: select previous hunk
|
|
<kbd>►</kbd>: select next hunk
|
|
<kbd>e</kbd>: edit file
|
|
<kbd>o</kbd>: open file
|
|
<kbd>v</kbd>: toggle drag select
|
|
<kbd>V</kbd>: toggle drag select
|
|
<kbd>a</kbd>: toggle select hunk
|
|
<kbd>c</kbd>: commit changes
|
|
<kbd>w</kbd>: commit changes without pre-commit hook
|
|
<kbd>C</kbd>: commit changes using git editor
|
|
</pre>
|
|
|
|
## Menu Panel
|
|
|
|
<pre>
|
|
<kbd>esc</kbd>: close menu
|
|
</pre>
|
|
|
|
## Stash Panel
|
|
|
|
<pre>
|
|
<kbd>enter</kbd>: view stash entry's files
|
|
<kbd>space</kbd>: apply
|
|
<kbd>g</kbd>: pop
|
|
<kbd>d</kbd>: drop
|
|
<kbd>n</kbd>: new branch
|
|
</pre>
|
|
|
|
## Status Panel
|
|
|
|
<pre>
|
|
<kbd>e</kbd>: edit config file
|
|
<kbd>o</kbd>: open config file
|
|
<kbd>u</kbd>: check for update
|
|
<kbd>enter</kbd>: switch to a recent repo
|
|
<kbd>a</kbd>: show all branch logs
|
|
</pre>
|