#!/bin/sh
#
# Copyright © 2008 Mike O'Connor <stew@vireo.org>
+#
+# This program is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by the
+# Free Software Foundation; either version 2, or (at your option) any
+# later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+# USA.
set -e
-
usage() {
bn=$(basename $0)
cat <<EOF
-$0: manage .mrconfig
+$0: manage home directory using mr
NAME
$bn - a command to manage detached git repositories using mr
COMMANDS
init
- create .mrconfig
+ create ~/.mrconfig
add repository_name
checkout the repository from the remote host and add it to
GIT_HOST=flounder.vireo.org
REMOTE_REPOS=~/git
-LOCAL_REPOS=.fgits
+LOCAL_REPOS=~/.fgits
+MRCONFIG=~/.mrconfig
+MOVEIN=~/.movein
+[ -e source $MOVEIN ] && source $MOVEIN
init() {
usage
fi
- if [ -e .mrconfig ]; then
- echo .mrconfig already exists
+ if [ -e $MRCONFIG ]; then
+ echo $MRCONFIG already exists
+ exit 1
+ fi
+
+ if [ -e $MOVEIN ]; then
+ echo $MOVEIN already exists
exit 1
fi
+ echo -n "git server hostname? [git.vireo.org] "
+ read GIT_HOST
+ if [ -z "$GIT_HOST" ]; then
+ GIT_HOST=git.vireo.org
+ fi
+
+ echo -n "path to remote repositories? [~/git] "
+ read REMOTE_REPOS
+ if [ -z "$REMOTE_REPOS" ]; then
+ REMOTE_REPOS=~/git
+ fi
+
+ echo -n "Local repository directory? [~/.fgit] "
+ read LOCAL_REPOS
+ if [ -z "$LOCAL_REPOS" ]; then
+ LOCAL_REPOS=~/.fgits
+ fi
+
+ echo -n "Location of .mrconfig file? [~/.mrconfig] "
+ read MRCONFIG
+ if [ -z "$MRCONFIG" ]; then
+ MRCONFIG=~/.mrconfig
+ fi
+
+ cat <<EOF > .movein
+GIT_HOST=$GIT_HOST
+REMOTE_REPOS=$REMOTE_REPOS
+LOCAL_REPOS=$LOCAL_REPOS
+MRCONFIG=$MRCONFIG
+EOF
+
mkdir $LOCAL_REPOS
- cat <<END > .mrconfig
+ cat <<END > $MRCONFIG
[DEFAULT]
include = cat /usr/share/mr/git-fake-bare
END
+
+
}
git config core.bare false
GIT_WORK_TREE="$PWD" git pull
trap - 0
- cat <<END >> .mrconfig
+ cat <<END >> $MRCONFIG
[$LOCAL_REPO]
checkout = git_fake_bare_checkout '$REPO_URL' '$REPO_NAME' '../../'
git push --all
trap - 0
- cat <<END >> .mrconfig
+ cat <<END >> $MRCONFIG
[$LOCAL_REPO]
checkout = git_fake_bare_checkout '$REPO_URL' '$REPO_NAME' '../../'
new)
new $@
;;
-esac
\ No newline at end of file
+esac