diff --git a/Custom-Commands-Compendium.md b/Custom-Commands-Compendium.md index b830fa8..ffa3992 100644 --- a/Custom-Commands-Compendium.md +++ b/Custom-Commands-Compendium.md @@ -344,22 +344,22 @@ customCommands: ## Pull from specific remote ```yml -- key: '' - description: "Pull from a specific remote repository" - context: 'files' - loadingText: 'Pulling ...' - command: git pull {{ .Form.Remote }} {{ .Form.RemoteBranch }} - prompts: - - type: 'input' - key: 'Remote' - title: "Remote:" - suggestions: - preset: 'remotes' - - type: 'input' - key: 'RemoteBranch' - title: "Remote branch:" - suggestions: - command: "git branch --remote --list '{{.Form.Remote}}/*' --format='%(refname:short)' | sed 's/{{.Form.Remote}}\\///'" + - key: '' + description: "Pull from a specific remote repository" + context: 'files' + loadingText: 'Pulling ...' + command: git pull {{ .Form.Remote }} {{ .Form.RemoteBranch }} + prompts: + - type: 'input' + key: 'Remote' + title: "Remote:" + suggestions: + preset: 'remotes' + - type: 'input' + key: 'RemoteBranch' + title: "Remote branch:" + suggestions: + command: "git branch --remote --list '{{.Form.Remote}}/*' --format='%(refname:short)' | sed 's/{{.Form.Remote}}\\///'" ``` ## Conventional commit