-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit-submergify.sh
executable file
·62 lines (47 loc) · 1.27 KB
/
git-submergify.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
#!/bin/bash
_username=$1
_parent=$2
_children=$3
while getopts ":i" opt; do
echo "GitHub username?"
read _username
echo "Parent repository name?"
read _parent
echo "Child repository names? (space separated)"
read _children
done
IFS=" " read -ra _child_array <<< "$_children"
echo
echo "Creating new parent repository in ./$_parent/"
echo
mkdir $_parent
cd $_parent
touch README.md
git init
git add .
git commit -m "Add README.md"
echo
echo "Pushing to remote at [email protected]:${_username}/${_parent}.git"
echo
git remote add origin [email protected]:${_username}/${_parent}.git
git push -u origin master
echo
echo "Adding child repositories . . ."
for _child in "${_child_array[@]}"
do
echo
echo "Merging [email protected]:${_username}/${_child}.git into ./${_parent}/${_child}/"
echo
git remote add -f ${_child} [email protected]:${_username}/${_child}.git
git merge -s ours --no-commit ${_child}/master --allow-unrelated-histories
git read-tree --prefix=${_child}/ -u ${_child}/master
git commit -m "Merge ${_child} into ${_child}/"
git remote rm ${_child}
done
echo
echo "Pushing changes to remote at [email protected]:${_username}/${_parent}.git"
echo
git push
echo
echo "Merge complete! Don't forget to update the README.md"
echo "Local directory: ./${_parent}"