From 17b48c1e960bda1d83eb903d9f9bd152d3eba6ff Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Tue, 3 May 2016 12:24:22 +0000 Subject: [PATCH] git-submod.mk: Documented some experiments in git-submod.mk Signed-off-by: Jan Lindemann --- make/git-submod.mk | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/make/git-submod.mk b/make/git-submod.mk index 6f4948d6..1b33ac9c 100644 --- a/make/git-submod.mk +++ b/make/git-submod.mk @@ -4,7 +4,10 @@ git-submod-init-remote: @echo "FIXME: git-srv-admin.sh needs to support creating a bare repo below /contrib/." @echo "FIXME: Then this target in $(lastword $(MAKEFILE_LIST)) has to do the following:" @echo "FIXME: - Use that," - @echo "FIXME: - rename remote \"origin\" to \"upstream\"," - @echo "FIXME: - add new remote origin pointing to newly created repo," + @echo "FIXME: - rename remote \"origin\" to \"upstream\", # git remote rename origin upstream" + @echo "FIXME: - add new remote origin pointing to newly created repo, # git remote add origin ssh://jan@git.jannet.de/srv/git/jan/contrib/" + @echo "FIXME: - fix remote to push to # git config branch.master.remote origin" + @echo "FISME: - set standard branch (should be okay anyway) # git config branch.master.merge refs/heads/master" @echo "FIXME: - push contents there." @exit 1 +