First, you'll need to get the project up and running on your machine. And for that, you need to be properly installed, so check out Getting Started. Now, since you've followed
the instructions carefully, you've installed an IDE and the boost library, and configured your IDE to find the boost libraries (Xcode, VisualStudio). So you can create a command line project, replace the source of the main.cpp
file with the code below, and compile and run it successfully, with a return code of 0.
Here are the steps for getting started with your own forked copy of the repository:
umich-quant
, and name it "dev-branch."MultiFactorMonteCarlo.xcodeproj
file, and launch it.main.cpp
, put a breakpoint on the last line of code (return 0;
), and hit the run button. Your program should stop at the breakpoint.This is what your workflow should look like:
dev-branch
, make your code changes . Run tests. dev-branch
, update your master, and create a new dev-branch
. For more information on using GitHub in a team setting, read this.