aboutsummaryrefslogtreecommitdiff
path: root/git/git-svn-mirror-finish
blob: 41f5ba907963635c72fbe453e40713cdc2fa6c84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#! /bin/sh 
# Copyright (C) 2009 Sergey Poznyakoff
#
# 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 3, 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, see <http://www.gnu.org/licenses/>.

GITROOT=/gitroot
HEADPFX=

if [ -r /etc/mirror/git/config ]; then
  . /etc/mirror/git/config
fi

if [ -r $HOME/.git-mirror ]; then
  . $HOME/.git-mirror
fi  

usage() {
  cat <<-EOT
	usage: $0 GIT-REPO
EOT
}       

while [ $# -ne 0 ]
do
  case $1 in
  -h|--help)
    usage
    exit 0;;
  -*)
    echo >&2 "$0: unknown option $1"
    exit 1;;
  *)
    break;;
  esac
done

if [ $# -ne 1 ]; then
  echo >&2 "$0: required argument missing"
  exit 1
fi

cd $GITROOT/$1 || exit 1

git branch -r |
 while read tag
 do
   case $tag in
   tags/*|trunk) 
      git branch -r -d $tag;;
   *)
      if [ -n "$HEADPFX" ]; then
        git checkout -b $tag $tag
        git branch -r -d $tag
        git branch -d ${HEADPFX}$tag
      else
        git branch -r -d $tag
      fi;;
   esac
 done

git config --remove-section svn
git config --remove-section svn-remote.svn

if [ -x .git/hooks/pre-receive ]; then
  chmod -x .git/hooks/pre-receive
  echo "Keeping old pre-receive hook in $GITROOT/$1/.git/hooks/pre-receive.mirror"
  mv .git/hooks/pre-receive .git/hooks/pre-receive.mirror
fi

Return to:

Send suggestions and report system problems to the System administrator.