Guide on How to Clone and Import theVT MAD Windows Phone Bus Tracker Project into Visual Studio 2010
This app will be used to track the buses around the campus using the BT4U API.
Please Make Sure You Have The Following Set Up.. All downloads can be found here.
- Windows 8 Installed
- Windows Phone 8.0 SDK Installed
You have the choice of using Git either with Git Bash or GitHub for Windows. I will explain how to set up both, but you are only required to set up one.
cd C:\Users\%USERNAME%\"My Documents"\"Visual Studio 2010"\Projects
git clone https://github.com/avneet723/BusTracker1.0.git
We need to give Git some basic information about ourselves
cd BusTracker1.0
Set up our name and email.. For example, If my name is John Doe
and my email johndoe@vt.edu
git config user.name "John Doe"
git config user.email "johndoe@vt.edu"
This Ends Setting Up Git with Git Bash
Go to Tools
-> Options
Two things we will want to change are configure git
and default storage directory
For configure git
, we need to set up our name and email.. For example, If my name is John Doe
and my email johndoe@vt.edu
John Doe
johndoe@vt.edu
For default storage directory
, we need to tell git where we want our projects stored.
Click the following symbol ...
and navigate to
My Documents\Visual Studio 2010\Projects
This is where we will be storing Visual Studio projects
This Ends Setting Up Git with GitHub for Windows
Open up Visual Studio 2010 Express
Click on Open Project
Go to Your My Documents Folder -> Visual Studio 2010 -> Projects -> BusTracker1.0 Folder
Click on (either) BusTracker File and click Open
Done!
Make some changes to your code
git add .
git commit -m "Fixed the Terrible Bug"
git push
Done!