Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 672 Bytes

NOTES.md

File metadata and controls

17 lines (15 loc) · 672 Bytes

How this mirror was built

Currently a 20m crontab runs the following process:

# Note original mirror of SVN takes a very long time
# git svn clone --stdlayout svn://svn.zabbix.com # original mirror
git svn fetch
git checkout trunk
git reset remotes/trunk --hard
git branch -D master # hack; git svn re-creates master branch
# git push --mirror [email protected]:zabbix/svn.zabbix.com.git # destructive to other branches
git push --all [email protected]:zabbix/zabbix.git
# explicitly push SVN related refs (i.e. for svn->git tags)
git push [email protected]:zabbix/zabbix.git refs/remotes/*
git push [email protected]:zabbix/zabbix.git refs/remotes/tags/*:refs/tags/*