File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
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
7
7
8
8
# git checkout -b $branchname master # create and switch to the release branch
9
9
# git push -u origin $branchname # push the release branch to the remote and track it
@@ -12,9 +12,9 @@ echo $branchname
12
12
# perform conversion
13
13
# ../mediawiki_to_git_md/convert.py mediawiki_dump.xml
14
14
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
18
18
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
You can’t perform that action at this time.
0 commit comments