Skip to content
Snippets Groups Projects
Commit 4bc9cb7c authored by Sam Gleske's avatar Sam Gleske
Browse files

Merge branch 'hotfix-svn_mirror_bug' into development

parents b423404e 38cbe0a5
No related branches found
No related tags found
No related merge requests found
gitlab-mirrors v0.2.4
* Fixing critical git svn mirror bug.
gitlab-mirrors v0.2.3 gitlab-mirrors v0.2.3
* Adding a final catch error message to add_mirror.sh * Adding a final catch error message to add_mirror.sh
* RELEASE file for more consistent releases. * RELEASE file for more consistent releases.
...@@ -11,11 +14,12 @@ gitlab-mirrors v0.2.1 ...@@ -11,11 +14,12 @@ gitlab-mirrors v0.2.1
gitlab-mirrors v0.2 gitlab-mirrors v0.2
* Renamed project from git-mirrors to gitlab-mirrors. * Renamed project from git-mirrors to gitlab-mirrors.
* Colorized output enabled for all commands! * SVN repository mirroring now supported!
* Better argument handling on all commands! * Project creation defaults can now be set in config.sh.
* Project creation defaults can now be set in config.sh! * New delete_mirror.sh command.
* Colorized output enabled for all commands.
* Better argument handling on all commands.
* New options for add_mirror.sh, see ./add_mirror.sh -h * New options for add_mirror.sh, see ./add_mirror.sh -h
* New delete_mirror.sh command!
* Knit and grit changes * Knit and grit changes
* add_mirror.sh has more robust error checking. * add_mirror.sh has more robust error checking.
* add_mirror.sh options can be out of order. Now using getopt for * add_mirror.sh options can be out of order. Now using getopt for
......
VERSION="v0.2.3" VERSION="v0.2.4"
...@@ -34,6 +34,7 @@ if git config --get svn-remote.svn.url &> /dev/null;then ...@@ -34,6 +34,7 @@ if git config --get svn-remote.svn.url &> /dev/null;then
#this is an SVN mirror so update it accordingly #this is an SVN mirror so update it accordingly
git reset --hard git reset --hard
git svn fetch git svn fetch
git svn rebase
cd .git cd .git
git config --bool core.bare true git config --bool core.bare true
git push gitlab git push gitlab
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment