oldrepo/Makefile

24 lines
534 B
Makefile
Raw Normal View History

2018-01-21 07:02:39 -06:00
# Clone from IPv6: git clone git://ping.wit.com/git/jcarrbox
# Clone with ssh keys: git clone ssh://root@ping.wit.com/var/lib/git/jcarrbox
2018-01-21 04:01:52 -06:00
all:
@echo read this Makefile
setup:
echo put stuff here
push:
git add --all
git commit -a
git push
2018-01-21 07:02:39 -06:00
submodule:
git submodule add git://ping.wit.com/git/witcoredns witcoredns
git submodule update --init --recursive
2018-01-21 04:01:52 -06:00
# 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