source: trunk/sync_svn_from_gitlab.sh @ 3100

Last change on this file since 3100 was 2509, checked in by aslmd, 3 years ago

added scripts for syncing gitlab>svn and svn>gitlab. the former can be done by anyone by rebasing a branch on the master but be sure to know what to do, see https://gitlab.in2p3.fr/la-communaut-des-mod-les-atmosph-riques-plan-taires/git-trunk/-/issues/13#note_107327. the latter can only be done by a gitlab maintainer.

  • Property svn:executable set to *
File size: 237 bytes
Line 
1#! /bin/bash
2## gitlab >> svn [with a linear history on master, see wiki]
3
4git checkout master
5git svn init https://svn.lmd.jussieu.fr/Planeto/trunk
6git update-ref refs/remotes/git-svn refs/remotes/origin/master
7git svn dcommit
8git push
Note: See TracBrowser for help on using the repository browser.