This is enhanced version of https://code.google.com/p/protobuf-csharp-port/.
There are three kinds of branches:
- master branch is verbatim copy of the original project (it even includes mercurial files).
- issueXX branches are derived from master with changes that fixes Issue XX from list of issues
Make sure you have Mercurial installed (e.g. under Ubuntu run sudo apt-get install mercurial
).
Run:
# Go to master branch.
git co master
# Make sure it has no changes.
git status
# Pull changes from https://code.google.com/p/protobuf-csharp-port/.
hg pull -u
# Commit and push.
git commit -a -m'Updated from root project.'
git push