Skip to content
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.

Clone the NetCore Repository

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

Git User/Email

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]"

Generate SSH Keys

It's also handy to set up SSH keys. Git has a nice help page.

Clone this wiki locally