summaryrefslogtreecommitdiffstats
path: root/modules/git/internal/cmdarg.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/git/internal/cmdarg.go')
-rw-r--r--modules/git/internal/cmdarg.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/git/internal/cmdarg.go b/modules/git/internal/cmdarg.go
new file mode 100644
index 0000000..f8f3c20
--- /dev/null
+++ b/modules/git/internal/cmdarg.go
@@ -0,0 +1,9 @@
+// Copyright 2023 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
+package internal
+
+// CmdArg represents a command argument for git command, and it will be used for the git command directly without any further processing.
+// In most cases, you should use the "AddXxx" functions to add arguments, but not use this type directly.
+// Casting a risky (user-provided) string to CmdArg would cause security issues if it's injected with a "--xxx" argument.
+type CmdArg string