summaryrefslogtreecommitdiffstats
path: root/pkg/commands/git_commands/working_tree_test.go
AgeCommit message (Collapse)Author
2023-09-05Move diff context size from UserConfig to AppStateStefan Haller
2023-09-04Don't pass ignoreWhitespace to git commandsStefan Haller
Now that AppState is available via common.Common, they can take it from there.
2023-09-04Add support for external diff commands (e.g. difftastic)Stefan Haller
2023-05-23Construct arg vector manually rather than parse stringJesse Duffield
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
2023-05-20Refactor interface for ApplyPatchJesse Duffield
2023-02-07Allow ignoring whitespace in diff in commits panelstk
2022-09-17remove deprecated callsjiepeng
2022-01-26improve merge conflict flowJesse Duffield
2022-01-09fix testJesse Duffield
2022-01-09add some more lintersJesse Duffield
2022-01-09refactorJesse Duffield