-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake-repo.sh
executable file
·60 lines (46 loc) · 1.08 KB
/
make-repo.sh
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
#!/bin/bash
if [ $# -eq 0 ]; then
echo "Usage: $0 repository_path";
echo " "
echo "example repository_path: project.git"
exit 1;
fi
if [[ "$1" != *.git ]]; then
echo "ERROR repository_path must ends with .git"
exit 3;
fi
source ./bbs.conf
if [ "x${FULL_HOSTNAME}" == "x" ]; then
FULL_HOSTNAME=`hostname --fqdn`;
fi
function print_info {
REPO_PATH=$1
REPO_URL="ssh://git@${FULL_HOSTNAME}://${REPO_PATH}"
echo " "
echo " "
echo "------------------------------------------------------------"
echo "NEW REPOSITORY PATH : ${REPO_PATH}"
echo "NEW REPOSITORY URL : ${REPO_URL}"
echo "------------------------------------------------------------"
echo "";
echo "LOCAL MACHINE INSTRUCTIONS:"
echo "";
echo 'cd [my_project]'
echo 'git init'
echo 'git add *'
echo 'git comit -m "My initial commit message"'
echo "git remote add origin ${REPO_URL}"
echo 'git push -u origin master'
echo " "
}
if [ -e $1 ]; then
echo $1 exists;
print_info $1;
exit 2;
fi
mkdir -p ${GIT_HOME}/$1
REPO=`readlink -f ${GIT_HOME}/$1`
cd $REPO
git init --bare
git update-server-info
print_info $REPO