From 00d946b1a86d71dc49e99b3cccb893f36bb194dc Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 21 Jan 2018 00:01:52 -1000 Subject: [PATCH] Initial commit --- Makefile | 19 +++++++++++++++++++ README.md | 1 + 2 files changed, 20 insertions(+) create mode 100644 Makefile create mode 100644 README.md diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ad93115 --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +# Clone from IPv6: git clone git://ping.wit.com/git/myrepo +# Clone with ssh keys: git clone ssh://root@ping.wit.com/var/lib/git/myrepo + +all: + @echo read this Makefile + +setup: + echo put stuff here + +push: + git add --all + git commit -a + git push + +# use this allow a new tree on the git server +resetgit: + mkdir myrepo + cd myrepo && touch .git/git-daemon-export-ok + cd myrepo && git config --bool core.bare true diff --git a/README.md b/README.md new file mode 100644 index 0000000..7646097 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +put your markdown here