aboutsummaryrefslogtreecommitdiffstats
path: root/git-checkout-store
diff options
context:
space:
mode:
authorTeddy Wing2014-12-06 10:55:55 -0500
committerTeddy Wing2014-12-06 10:55:55 -0500
commitc32a3d476a5c5a45fc9d9af45b7393d6f9cc1db0 (patch)
tree0bcd5a8c64363cd2a82074b2959b4df4b0b36a57 /git-checkout-store
downloadgit-checkout-history-c32a3d476a5c5a45fc9d9af45b7393d6f9cc1db0.tar.bz2
Initial commit.
* Start of README with an idea for the commands * Code to grab command line arguments with help from gobyexample.com
Diffstat (limited to 'git-checkout-store')
-rw-r--r--git-checkout-store/main.go13
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)
+}