diff options
Diffstat (limited to 'git-checkout-store')
-rw-r--r-- | git-checkout-store/main.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/git-checkout-store/main.go b/git-checkout-store/main.go new file mode 100644 index 0000000..d02f8ad --- /dev/null +++ b/git-checkout-store/main.go @@ -0,0 +1,13 @@ +package main + + +import ( + "os" + "fmt" +) + + +func main() { + args := os.Args[1:] + fmt.Println(args) +} |