I have been using a private Gitlab instance to hold all my code. But since most of the staff that work with me now have a Github account, i would really like to get moving and m
Another options is to add an additional URL to the origin:
origin
git remote set-url --add origin git@github.com:/.git
When you push to origin it will push to both the original origin (gitlab) and the one added above (github).