1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-28 09:08:41 +02:00

commands/git : fix typo

This commit is contained in:
Anthony HAMON 2018-09-10 22:38:25 +02:00
parent ccbc5e569c
commit 0aba49af2b

View File

@ -299,7 +299,7 @@ func (c *GitCommand) Commit(message string) (*exec.Cmd, error) {
return nil, c.OSCommand.RunCommand(command)
}
// Pull pull from repo
// Pull pulls from repo
func (c *GitCommand) Pull() error {
return c.OSCommand.RunCommand("git pull --no-edit")
}