-
Notifications
You must be signed in to change notification settings - Fork 3
/
_init_repo.sh
64 lines (52 loc) · 1.77 KB
/
_init_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
61
62
63
64
function sed_fakeeditor() {
editor_command=$1
echo "sed -e \"$editor_command\" < \"\$1\" > \"\$1-\"" >> fake_editor.sh
echo 'mv "$1-" "$1"' >> fake_editor.sh
chmod +x fake_editor.sh
}
function fakeeditor() {
echo "echo \"$1\" > \"\$1-\"" >> fake_editor.sh
echo 'mv "$1-" "$1"' >> fake_editor.sh
chmod +x fake_editor.sh
}
function aliases() {
git config alias.s "status"
git config alias.lg "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all"
}
function init_repo() {
set -e
if ! git config --list | grep email; then
echo "No email config detected - initializing"
git config --global user.email "[email protected]"
git config --global user.name "Git Master"
git config --global core.editor vim
fi
_REPO_NAME=$1
SECONDARY_REPO=$2
GIT_REPOS=.git-repos
if [ -z "$CLEAN" ]; then
echo "Cleaning $(pwd)/workspace/*"
rm -rf "$(pwd)/workspace"
mkdir -p "$(pwd)/workspace"
rm -rf $GIT_REPOS
fi
mkdir -p $GIT_REPOS/$_REPO_NAME.git
git init --initial-branch "main" --bare $GIT_REPOS/$_REPO_NAME.git
git clone file://$(pwd)/$GIT_REPOS/$_REPO_NAME.git "$(pwd)/workspace/$_REPO_NAME"
cd "workspace/$_REPO_NAME"
git config init.defaultBranch "main"
git commit -m "init $_REPO_NAME" --allow-empty
git push origin main
aliases
cd -
if [ ! -z $SECONDARY_REPO ];
then
git clone file:////$(pwd)/$GIT_REPOS/$_REPO_NAME.git "$(pwd)/workspace/${_REPO_NAME}-2"
cd "workspace/${_REPO_NAME}-2"
git config init.defaultBranch "main"
aliases
git config user.email "[email protected]"
git config user.name "Tim Who Eats Your Sandwich"
cd -
fi
}