Searched refs:RunCommandWithOutput (Results 1 – 20 of 20) sorted by relevance
/dports/devel/lazygit/lazygit-0.31.4/pkg/commands/ |
H A D | branches.go | 21 branchName, err := c.RunCommandWithOutput("git symbolic-ref --short HEAD") 26 output, err := c.RunCommandWithOutput("git branch --contains") 72 return c.OSCommand.RunCommandWithOutput(cmdStr) 76 …output, err := c.RunCommandWithOutput("git rev-parse --abbrev-ref --symbolic-full-name %s@{u}", c.… 108 pushableCount, err := c.OSCommand.RunCommandWithOutput(command, to, from) 112 pullableCount, err := c.OSCommand.RunCommandWithOutput(command, from, to)
|
H A D | commits.go | 39 message, err := c.OSCommand.RunCommandWithOutput(cmdStr) 45 messageWithHeader, err := c.OSCommand.RunCommandWithOutput(cmdStr) 51 return c.RunCommandWithOutput("git show --no-patch --pretty=format:%%s %s", sha)
|
H A D | loading_stash.go | 14 rawString, _ := c.OSCommand.RunCommandWithOutput(unescaped) 28 rawString, err := c.RunCommandWithOutput("git stash list --name-only")
|
H A D | loading_tags.go | 13 remoteBranchesStr, err := c.OSCommand.RunCommandWithOutput(`git tag --list --sort=-creatordate`)
|
H A D | loading_commit_files.go | 16 …filenames, err := c.RunCommandWithOutput("git diff --submodule --no-ext-diff --name-status -z --no…
|
H A D | loading_remotes.go | 15 remoteBranchesStr, err := c.OSCommand.RunCommandWithOutput(unescaped)
|
H A D | remotes.go | 37 _, err := c.OSCommand.RunCommandWithOutput(
|
H A D | files.go | 200 …s, _ := c.OSCommand.RunCommandWithOutput(c.WorktreeFileDiffCmdStr(file, plain, cached, ignoreWhite… 245 return c.OSCommand.RunCommandWithOutput(cmdStr)
|
H A D | loading_commits.go | 377 …output, _ := c.OSCommand.RunCommandWithOutput("git merge-base %s %s", c.OSCommand.Quote(refName), … 394 …output, err := c.OSCommand.RunCommandWithOutput("git merge-base %s %s@{u}", c.OSCommand.Quote(refN…
|
H A D | loading_files.go | 83 …statusLines, err := c.RunCommandWithOutput("git status %s --porcelain -z %s", opts.UntrackedFilesA…
|
H A D | loading_branches.go | 41 output, err := b.GitCommand.OSCommand.RunCommandWithOutput(cmdStr)
|
H A D | branches_test.go | 213 _, err := gitCmd.OSCommand.RunCommandWithOutput(cmdStr)
|
/dports/devel/lazygit/lazygit-0.31.4/pkg/commands/oscommands/ |
H A D | os.go | 163 func (c *OSCommand) RunCommandWithOutput(formatString string, formatArgs ...interface{}) (string, e… func 221 _, err := c.RunCommandWithOutput(formatString, formatArgs...)
|
H A D | os_test.go | 35 s.test(NewDummyOSCommand().RunCommandWithOutput(s.command))
|
/dports/www/mattermost-server/mattermost-server-6.0.2/cmd/mattermost/commands/ |
H A D | export_test.go | 70 actual, _ := th.RunCommandWithOutput(t, "export", "csv", "export.csv", "--exportFrom", "0")
|
H A D | cmdtestlib.go | 210 func (h *testHelper) RunCommandWithOutput(t *testing.T, args ...string) (string, error) { func
|
/dports/devel/lazygit/lazygit-0.31.4/pkg/gui/ |
H A D | git_flow.go | 46 …gitFlowConfig, err := gui.GitCommand.RunCommandWithOutput("git config --local --get-regexp gitflow…
|
H A D | custom_commands.go | 206 message, err := gui.GitCommand.RunCommandWithOutput(cmdStr)
|
/dports/devel/lazygit/lazygit-0.31.4/pkg/app/ |
H A D | app.go | 149 output, err := app.OSCommand.RunCommandWithOutput("git --version")
|
/dports/devel/lazygit/lazygit-0.31.4/pkg/integration/ |
H A D | integration.go | 323 output, _ := osCommand.RunCommandWithOutput(cmdStr)
|