Thursday, May 8, 2014

Visual Studio 2013, Team Explorer and GitHub


Recently Git version controlling system has gained lots of popularity and more and more developers are using it for software development and version controlling. Microsoft also tied with Git with Visual Studio 2013. So if you use Visual Studio as your primary IDE and then its high time to learn about it. With Visual Studio 2013 team explorer you can easily tied code in your git repository so I thought it will be a good idea to write a blog post about How we can create git repository in local with team explorer in Visual Studio 2013 and publish it to github a well know open source a powerfull code hosting site for the open source projects.

To demonstrate this I have created a console application like following.

Cosnole application for github, team explorer and visual studio 2013

and its contains a following code.

using System;
namespace GitHubDemo
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("GitHubDemo");
            Console.WriteLine("Team Explorer");
        }
    }
}
Now as our application is ready We need to add it to source control. You can add this solution to a source control via right click-> Add solutions to source control.

Add project to git source control visual studio 2013

Once you click on Add Solution to Source Control it will ask which source control you want to use. I have selected git there like following.

choose source control provider in visual studio 2013

Once you click Ok it will create a new repository for that in same folder where you have your project.

git-repository-created-visual-studio-2013

Now its time to commit your code via right click solution and commit.

 commit-to-local-git-repository-visual-studio-2013

Once you click on commit it will ask for commit message.

commit-message-git-visual-studio

Once you commit  it will create a local commit to your server.

local-commit-git-team-explorer-visual-studio-2013

So we have our local git repository setup is ready now its time to push it to github. So first we have to create a remote repository on github.

create-git-hub-repository

Once you click on create repository it will create a repository like following.

git-hub-respository-visual-studio-2013

Now once you click on unsync commits it will ask to publish it to remote repository. Where you need to enter github repository url like following.

publish-url-github-team-explorer-visual-studio-2013

Once you enter and publish URL it will ask for the username and password.

username-password-git-hub

Once you provide user name and password it will publish it to remote repository and give message like following.

publish-message-git-team-explorer-visual-studio-2013

That’s it. Your code has been to publish to github.com.

github-publish-repository

Hope you like it. Stay tuned for more!!
Share:

3 comments:

Your feedback is very important to me. Please provide your feedback via putting comments.

Support this blog-Buy me a coffee

Buy me a coffeeBuy me a coffee
Search This Blog
Subscribe to my blog

  

My Mvp Profile
Follow us on facebook
Blog Archive
Total Pageviews