Skip to content

Commit 283f6b5

Browse files
committed
convert
1 parent a308883 commit 283f6b5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

convert.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/bash
22

3-
now="$(date +'%Y%m%d')"
4-
echo $now
5-
branchname="master_$now"
6-
echo $branchname
3+
#now="$(date +'%Y%m%d')"
4+
#echo $now
5+
#branchname="master_$now"
6+
#echo $branchname
77

88
#git checkout -b $branchname master # create and switch to the release branch
99
#git push -u origin $branchname # push the release branch to the remote and track it
@@ -12,9 +12,9 @@ echo $branchname
1212
# perform conversion
1313
#../mediawiki_to_git_md/convert.py mediawiki_dump.xml
1414

15-
#git branch -d master # delete local master
16-
#git push --delete origin master # delete remote master
17-
#git remote prune origin # delete the remote tracking branch
15+
git branch -d master # delete local master
16+
git push --delete origin master # delete remote master
17+
git remote prune origin # delete the remote tracking branch
1818

19-
#git branch -m master # rename the local branch to master
20-
#git push origin master # make the new master branch remote
19+
git branch -m master # rename the local branch to master
20+
git push origin master # make the new master branch remote

0 commit comments

Comments
 (0)