mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-11 16:16:28 -04:00
By constructing an arg vector manually, we no longer need to quote arguments Mandate that args must be passed when building a command Now you need to provide an args array when building a command. There are a handful of places where we need to deal with a string, such as with user-defined custom commands, and for those we now require that at the callsite they use str.ToArgv to do that. I don't want to provide a method out of the box for it because I want to discourage its use. For some reason we were invoking a command through a shell when amending a commit, and I don't believe we needed to do that as there was nothing user- supplied about the command. So I've switched to using a regular command out- side the shell there |
||
|---|---|---|
| .. | ||
| advanced_interactive_rebase.go | ||
| amend_first_commit.go | ||
| amend_fixup_commit.go | ||
| amend_head_commit_during_rebase.go | ||
| amend_merge.go | ||
| amend_non_head_commit_during_rebase.go | ||
| drop_todo_commit_with_update_ref.go | ||
| drop_todo_commit_with_update_ref_show_branch_heads.go | ||
| edit_first_commit.go | ||
| edit_non_todo_commit_during_rebase.go | ||
| fixup_first_commit.go | ||
| fixup_second_commit.go | ||
| move.go | ||
| move_in_rebase.go | ||
| rebase.go | ||
| reword_first_commit.go | ||
| reword_last_commit.go | ||
| reword_you_are_here_commit.go | ||
| reword_you_are_here_commit_with_editor.go | ||
| shared.go | ||
| squash_down_first_commit.go | ||
| squash_down_second_commit.go | ||
| squash_fixups_above_first_commit.go | ||
| swap_in_rebase_with_conflict.go | ||
| swap_with_conflict.go | ||