mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-23 12:18:51 +02:00
Fix typos (#4121)
- **PR Description** This PR fixes typos in the `allBranchesLogCmd` description
This commit is contained in:
commit
13e9e1de83
@ -327,7 +327,7 @@ git:
|
|||||||
branchLogCmd: git log --graph --color=always --abbrev-commit --decorate --date=relative --pretty=medium {{branchName}} --
|
branchLogCmd: git log --graph --color=always --abbrev-commit --decorate --date=relative --pretty=medium {{branchName}} --
|
||||||
|
|
||||||
# Command used to display git log of all branches in the main window.
|
# Command used to display git log of all branches in the main window.
|
||||||
# Deprecated: User `allBranchesLogCmds` instead.
|
# Deprecated: Use `allBranchesLogCmds` instead.
|
||||||
allBranchesLogCmd: git log --graph --all --color=always --abbrev-commit --decorate --date=relative --pretty=medium
|
allBranchesLogCmd: git log --graph --all --color=always --abbrev-commit --decorate --date=relative --pretty=medium
|
||||||
|
|
||||||
# If true, do not spawn a separate process when using GPG
|
# If true, do not spawn a separate process when using GPG
|
||||||
|
@ -240,7 +240,7 @@ type GitConfig struct {
|
|||||||
// Command used when displaying the current branch git log in the main window
|
// Command used when displaying the current branch git log in the main window
|
||||||
BranchLogCmd string `yaml:"branchLogCmd"`
|
BranchLogCmd string `yaml:"branchLogCmd"`
|
||||||
// Command used to display git log of all branches in the main window.
|
// Command used to display git log of all branches in the main window.
|
||||||
// Deprecated: User `allBranchesLogCmds` instead.
|
// Deprecated: Use `allBranchesLogCmds` instead.
|
||||||
AllBranchesLogCmd string `yaml:"allBranchesLogCmd"`
|
AllBranchesLogCmd string `yaml:"allBranchesLogCmd"`
|
||||||
// Commands used to display git log of all branches in the main window, they will be cycled in order of appearance
|
// Commands used to display git log of all branches in the main window, they will be cycled in order of appearance
|
||||||
AllBranchesLogCmds []string `yaml:"allBranchesLogCmds"`
|
AllBranchesLogCmds []string `yaml:"allBranchesLogCmds"`
|
||||||
|
@ -605,7 +605,7 @@
|
|||||||
},
|
},
|
||||||
"allBranchesLogCmd": {
|
"allBranchesLogCmd": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "Command used to display git log of all branches in the main window.\nDeprecated: User `allBranchesLogCmds` instead.",
|
"description": "Command used to display git log of all branches in the main window.\nDeprecated: Use `allBranchesLogCmds` instead.",
|
||||||
"default": "git log --graph --all --color=always --abbrev-commit --decorate --date=relative --pretty=medium"
|
"default": "git log --graph --all --color=always --abbrev-commit --decorate --date=relative --pretty=medium"
|
||||||
},
|
},
|
||||||
"allBranchesLogCmds": {
|
"allBranchesLogCmds": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user