summaryrefslogtreecommitdiffstats
path: root/pkg/i18n/english.go
AgeCommit message (Collapse)Author
2020-03-19allow resetting cherry picked commits selectionJesse Duffield
2020-03-18add opne menu keybindings in docshitsuji_no_shippo
2020-03-18add close menu keybindings in docshitsuji_no_shippo
2020-03-18better upstream tracking and allow renaming a branchJesse Duffield
2020-03-11add search keybings in docshitsuji_no_shippo
2020-02-29better keybindings for patch building modeJesse Duffield
2020-02-29better keybindings for staging by lineJesse Duffield
2020-02-29fix cheatsheet script to support different contextsJesse Duffield
2020-02-25add half and fullscreen modesv0.15.1Jesse Duffield
2020-02-16fix wordingJesse Duffield
2020-02-16add mixed option to HEAD resetting, remove @{upstream}Jesse Duffield
2020-02-16allow resetting to tagJesse Duffield
2020-02-16allow resetting to branchJesse Duffield
2020-02-06Added feature to ignore tracked filesGlenn Vriesman
Signed-off-by: Glenn Vriesman <glenn.vriesman@gmail.com>
2020-01-08add git flow supportJesse Duffield
2020-01-07allow commits to be checked outJesse Duffield
2020-01-07allow hard resetting to upstream branchJesse Duffield
2020-01-03make Ctrl+P visiblematejcik
2019-12-07allow fetching remotes with 'f'Jesse Duffield
2019-11-21fix typov0.11.1Jesse Duffield
2019-11-21add tags panelJesse Duffield
2019-11-21allow editing remotesJesse Duffield
2019-11-21refactor confirmation prompt codeJesse Duffield
2019-11-21support setting upstreamJesse Duffield
2019-11-21support rebasing onto remote branchJesse Duffield
2019-11-21support deleting remote branchesJesse Duffield
2019-11-21support adding/removing remotesJesse Duffield
2019-11-21support viewing a remote branchJesse Duffield
2019-11-14allow editing or opening a file while resolving merge conflictsJesse Duffield
2019-11-13show upstream branch for branchJesse Duffield
2019-11-13prompt to set upstream when pulling on untracked branchJesse Duffield
prompt to set upstream when pulling on untracked branch
2019-11-11specify upstream when pushing a branch for the first timev0.10.4Jesse Duffield
2019-11-10add some shameless self promotionJesse Duffield
2019-11-10add mouse supportJesse Duffield
2019-11-10remove old add patch keybindingJesse Duffield
2019-11-05better titlesJesse Duffield
2019-11-05support line by line additions in staging and patch building contextsJesse Duffield
2019-11-05checks for if we're in a normal working tree stateJesse Duffield
2019-11-05Support building and moving patchesJesse Duffield
WIP
2019-11-05support split view in staging panel and staging rangesJesse Duffield
2019-10-27#480 Allow cycling side panels with number keysGiorgio Previtera
2019-07-14472 - Update error messageGiorgio Previtera
2019-07-14472 - Don't panic if not in a repositoryGiorgio Previtera
Display a friendly message and exit with an error if not in a Git repository. Using the same approach used in this PR: https://github.com/jesseduffield/lazydocker/pull/14/files
2019-06-06allow stashing staged changesJesse Duffield
reinstate old stash functionality with the 's' keybinding
2019-05-26request explicit return from subprocessJesse Duffield
Previously we were recording output from subprocesses using a multiwriter and hooking that up to the cmd's stdout to write to both os.Stdout and a buffer. We would then display the output after the program finished. This worked well for commands like 'ls' but not for commands like 'vi' which expect you to be in a tty, and when you've got the cmd's stdout pointing at a multiwriter, the subprogram thinks we're not in a tty and then things like terminal corruption can happen. This was the case with neovim, and even in vim a warning was given with a pause before starting the program. Now we're chucking out the multiwriter and instead making it that you need to press enter after the program has finished to return to lazygit. This allows you to view the output of the program (e.g. if it's ls) and then decide that you want to return. It's one level of unnecessary redirection for editors like vim, but even they could potentially have output to stderr/stdout that you want to look at before returning. Please enter the commit message for your changes. Lines starting
2019-05-06support resetting to a commit in either soft, hard, or mixed modeJesse Duffield
2019-04-26Translated missing sentencesmjarkk
2019-04-13Add 'w' keybinding in files panel to commit as a WIPJesse Duffield
If your git.skipHookPrefix is set to, say, WIP, in your config, then hitting 'w' in the files panel will bring up the commit message panel with 'WIP' pre-filled, so you just need to hit enter to confirm (or add some more to the message) in order to commit your changes with the --no-verify flag, meaning the pre-commit hook will be skipped
2019-04-10Always include atleast 2 commits when doing squash and fixupPeter Lundberg
2019-04-07support custom commandsJesse Duffield