diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2021-12-10 06:51:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-10 06:51:49 +0100 |
commit | fe158cd6e176682e087efea9625ec5409f2956bf (patch) | |
tree | 63afb89d42b388316d045820b44972f54e0b8f01 /plumbing/protocol/packp/updreq.go | |
parent | 589a41ceedfa89e1ff334a969d1beb28cb731de9 (diff) | |
parent | 39f97ab86a776dd8acd58a79a660d0cfdb7068c0 (diff) | |
download | go-git-fe158cd6e176682e087efea9625ec5409f2956bf.tar.gz |
Merge branch 'master' into jc-push-atomic
Diffstat (limited to 'plumbing/protocol/packp/updreq.go')
-rw-r--r-- | plumbing/protocol/packp/updreq.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plumbing/protocol/packp/updreq.go b/plumbing/protocol/packp/updreq.go index 46ad6fd..5dbd8ac 100644 --- a/plumbing/protocol/packp/updreq.go +++ b/plumbing/protocol/packp/updreq.go @@ -87,9 +87,9 @@ type Action string const ( Create Action = "create" - Update = "update" - Delete = "delete" - Invalid = "invalid" + Update Action = "update" + Delete Action = "delete" + Invalid Action = "invalid" ) type Command struct { |