oldrepo/Makefile

26 lines
439 B
Makefile
Raw Permalink Normal View History

2018-01-21 04:01:52 -06:00
all:
2018-06-17 06:13:51 -05:00
# ./clone-witcom.sh
2018-01-21 04:01:52 -06:00
2018-01-29 01:12:50 -06:00
pull:
2018-02-02 06:21:57 -06:00
git pull
2018-06-17 06:13:51 -05:00
# ./clone-witcom.sh update
2018-01-29 01:12:50 -06:00
2018-01-21 04:01:52 -06:00
setup:
echo put stuff here
push:
git add --all
2018-01-21 08:02:06 -06:00
-git commit -a
2018-01-21 04:01:52 -06:00
git push
2018-01-21 07:21:48 -06:00
# git submodule add git://ping.wit.com/git/witcoredns witcoredns
update:
2018-01-21 08:02:06 -06:00
git pull
2018-01-21 07:02:39 -06:00
git submodule update --init --recursive
2018-01-31 03:04:32 -06:00
# do this to allow a new tree on the git server
2018-01-21 04:01:52 -06:00
resetgit:
mkdir myrepo
cd myrepo && touch .git/git-daemon-export-ok
cd myrepo && git config --bool core.bare true