26 lines
439 B
Makefile
26 lines
439 B
Makefile
all:
|
|
# ./clone-witcom.sh
|
|
|
|
pull:
|
|
git pull
|
|
# ./clone-witcom.sh update
|
|
|
|
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
|