add a makefile
This commit is contained in:
parent
9729cbeae5
commit
be03f9f7cc
|
@ -0,0 +1,24 @@
|
|||
# Clone from IPv6: git clone git://ping.wit.com/git/website/jcarr/check.jcarr.wit.com
|
||||
# Clone with ssh keys: git clone ssh://root@ping.wit.com/var/lib/git/website/jcarr/check.jcarr.wit.com
|
||||
|
||||
all:
|
||||
echo run setup
|
||||
|
||||
setup:
|
||||
echo put stuff here
|
||||
|
||||
push:
|
||||
git add --all
|
||||
-git commit -a
|
||||
git push
|
||||
|
||||
# git submodule add git://ping.wit.com/git/witcoredns witcoredns
|
||||
update:
|
||||
git pull
|
||||
git submodule update --init --recursive
|
||||
|
||||
# do this to 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
|
Loading…
Reference in New Issue