source: trunk/sync_gitlab_from_svn.sh @ 3518

Last change on this file since 3518 was 2509, checked in by aslmd, 4 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: 242 bytes
Line 
1#! /bin/bash
2## svn >> gitlab [must have write permissions 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 rebase
8git push
Note: See TracBrowser for help on using the repository browser.