-
Notifications
You must be signed in to change notification settings - Fork 14
Home
pbelousov edited this page Dec 1, 2010
·
10 revisions
This is an update to PartCover, a code coverage tool originally hosted on sourceforge (https://sourceforge.net/projects/partcover/), to .NET4
There is a dependancy on boost (see http://www.boost.org/) a C++ library and because of packaging changes by Microsoft we now need to reference AtlServer which is now hosted at CodePlex (http://atlserver.codeplex.com/). I have packaged the zips that I downloaded from those sites so it is possible to ensure that anyone working on the project is using the same versions.
Setting Up Git With GitHub
If this is your first time to use Git or GitHub, follow these steps.
- Install Git from Git-1.6.5.1
- Install TortoiseGit TortoiseGit-1.2.1.0-32bit and select SSH (instead of PLink) when asked.
- Click “Signup” on the upper right corner of the GitHub site. It’s free to create an account.
- Next you need to setup a secure public key with your GitHub account to avoid entering a password every time you access Git or TortoiseGit. Follow these steps:
- Open a Git Bash prompt by right clicking on any folder in Windows Explorer and click “Git Bash Here”.
- At the prompt enter the following command after replacing with your own email address:
ssh-keygen -t rsa -C “your email address”
(Press enter 3 times for default file name, and empty pass phrase.) - Now, use Windows Explorer to find your C:\Documents and Setting\[User Name]\.ssh folder. Inside that folder, select and open the id_rsa.pub file in Notepad.
- Copy everything in the id_rsa.pub file to the copy/paste clipboard.
- Now in a browser, open your GitHub account page. In the SSH Public Keys section click “add another public key”, then paste your key into the key field. If you leave the title blank the key comment (your email) will be used for the title.
You have completed setup and install of Git with GitHub. Now proceed with setup of PartCover.