How To Sync - viruscamp/unluac GitHub Wiki

install git Mercurial

install git-hg from https://github.com/cosmin/git-hg

Init with empty remote repository:

git-hg clone http://hg.code.sf.net/p/unluac/hgcode unluac
cd unluac
git remote add origin https://github.com/viruscamp/unluac.git
git push --set-upstream origin master

Init with remote repository:

git-hg clone http://hg.code.sf.net/p/unluac/hgcode unluac
cd unluac
git remote add origin https://github.com/viruscamp/unluac.git
git pull --set-upstream origin master

Sync github repository with hg

git-hg pull
git push origin master