-
Notifications
You must be signed in to change notification settings - Fork 67
How To Sync
viruscamp edited this page Feb 2, 2021
·
2 revisions
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