Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSami Hiltunen <shiltunen@gitlab.com>2021-07-13 15:18:10 +0300
committerSami Hiltunen <shiltunen@gitlab.com>2021-07-21 18:55:57 +0300
commitd33c41bb6bfcbfbe3c5fff772b7f459fe0c2cf40 (patch)
tree386b447db03e93c119fd18cdfaf69eb2a4681817
parent34d5b96ce9e51f3952eb02b899e876a93a24dc23 (diff)
Add `git am` command description
`git am` is going to be used for applying the patches in the Go port of UserApplyPatch. This commit adds the command description to our list of git commands.
-rw-r--r--internal/git/command_description.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/git/command_description.go b/internal/git/command_description.go
index fa45349a9..66eca3676 100644
--- a/internal/git/command_description.go
+++ b/internal/git/command_description.go
@@ -24,6 +24,7 @@ type commandDescription struct {
// commandDescriptions is a curated list of Git command descriptions for special
// git.ExecCommandFactory validation logic
var commandDescriptions = map[string]commandDescription{
+ "am": {},
"apply": {
flags: scNoRefUpdates,
},