[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Where to publish Lua modules?
- From: Sam Roberts <vieuxtech@...>
- Date: Wed, 4 Apr 2012 08:59:58 -0700
On Wed, Apr 4, 2012 at 1:19 AM, Dimitris Papavasiliou
<dpapavas@gmail.com> wrote:
> Maybe there are other better solutions.
There is, use git-svn to bidirectionally push history to github, and
pull any changes people give you back.
Btw, there is a link on github that will pull the head as a tarball,
so its a decent way of pulling tarballs, too.
svn workflow would look something like below (google around for better
info, my details might be wrong):
# svn -> github
git svn clone svn://svn.example.com/stuff/trunk/lua/joey joey
git remote add origin git@github.com:your.username/joey.git
git push origin
# github -> svn
git pull
git svn rebase
git svn dcommit