-
Notifications
You must be signed in to change notification settings - Fork 3
Finishing Touches
cschlesi edited this page Nov 3, 2012
·
5 revisions
So you have a brand new virtual machine set with NetCore and Mininet. Before you get started, take a minute to make sure your development environment is ready to go.
If you grabbed the pre-configured virtual machine, you will still need to clone the NetCore repository:
cd ~
git clone [email protected]:frenetic-lang/netcore.git
cd netcore
git submodule init
git submodule update
If you plan to push changes to the central repository, it's handy to automatically tag your commits with your username and email:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
It's also handy to set up SSH keys. Git has a nice help page.