Click here to Skip to main content
15,887,746 members
Articles / Visual Studio

How to Initialize a Git Repository using Visual Studio Code and Publish the Code to Git Server (Visual Studio Team Services)

Rate me:
Please Sign up or sign in to vote.
4.83/5 (5 votes)
19 Mar 2017CPOL5 min read 134.9K   7   2
In this article, we would learn to publish the local repository to the Git Server using Visual Studio code.

In the previous article, we learned about how to clone an existing Git repository to a local system. Today, we would learn how can you initialize a Git Repository in your local system first and then publish it to the centralized Git repository.

Let's start...

Step 1

Create a folder in your local system directory.

Initialize_Repository_1

Step 2

Open Visual Studio Code.

Initialize_Repository_2

Step 3

Click on Left_Bar_Explorer_Icon(Explorer ) Icon displayed on the left side bar of Visual Studio Code and click on Open Folder button.

OR:

Click Open folder link, existing on the Welcome Page under Start section (shown below).

Initialize_Repository_3

OR:

Go to File > Menu > Open folder

OR:

Use Ctrl + K, Ctrl + O

Step 4

Select the folder created above which would start displaying in Explorer windows as shown below.

Initialize_Repository_4

Step 5

Click on the Left_Bar_Git_Icon (Git) icon displayed on the left side bar in Visual Studio code. This would show a button “Initialize Git Repository”

Initialize_Repository_5

Step 6

Click on “Initialize Git Repository” button. This will create a local .git folder in the local folder. This .git folder is the folder which does the magic and keeps each and every detail about local branches, remote branches, local check-ins, log history and every other information which is required from version control perspective.

Once the repository is initialized, the complete folder where the Git has been initialized would start to be tracked. Now git would start tracking this folder (HelloWorld) and shows the changes made within this folder.

Initialize_Repository_6

Step 7

Let’s add a new file to the “HelloWorld” folder. As soon as any file is added or modified, it would start showing on the Git Icon on the left side bar as a number. If one file is added and one file is modified, then total 2 would be displayed on Git icon as shown below where only one new file has been added and Git icon shows one.

Initialize_Repository_7

The file added above is shown as “U” means Untracked. This is because this file is still not tracked by Git. This is because the file is not checked-in into the local repository.

Step 8

Click on the “+” on the right side of the file and stage it. Provide some comment in the message box and click on Commit_All_Icon(Right) icon on the top, to commit the file in the local repository. Here just note that the file would be checked-in in the default master branch.

Initialize_Repository_8

Now we are done with the changes and want to push the changes on the Git Server but you can see all the options available in git menu are disabled.

Initialize_Repository_8.1

Also on the left bottom, Status Bar does not show Publish_Icon (Publish) icon which publishes a branch to the remote server.

StatusBar

This is because Visual Studio code does not know where the files need to be pushed or in other words, the destination is still not defined, or technically it can be said that Git Remote is not defined.

Step 9

Let's define a git remote with the url of Visual Studio Team Services (VSTS). Here, I would like to mention that I have an account on Visual Studio Team Services and this is free to use up to 5 users. So if you have a small team of 5 members, you should give it a try.

As I do not have any predefined repository on VSTS, first we need to create a Repository in VSTS. As the scope of this article is to use an existing Git Repository, I am assuming the HelloWorld repository is already created in VSTS. Creation of repository in VSTS is very easy and after login to the VSTS, you need to create a project which internally creates the Git repository. You have choices to choose either Git or TFVC.

Create_Remote_Repository

Default remote which Git refers to by default is “Origin”. I would be defining a local remote using “Origin” only with “HelloWorld” repository created on Git Server. After defining a local remote Visual Studio is aware about that to which repository the code has to be published and what would be the repository name.

The command for defining a git remote is git remote add <remote name> <repository url>

Open Terminal and run the above command.

img alt="Define_Remote" class="alignnone size-full wp-image-266" src="/KB/webservices/1177391/define_remote.png" style="height: 101px; width: 640px;" />

Once the remote is defined, publish icon would be displayed in Status Bar.

Publish_After_Remote

Step 10

Now once the remote is defined, you can push your files to the remote server. The command to push the added/modified files to the server is:

git push -u origin –all

Repository_Pushed

If all goes well, you would get the messages shown above which push all the objects to the specified repository and the Sync_Icon (Sync) icon would be displayed in Status Bar.

Sync_With_Status_bar

Now whenever you have any local commit to Push or any commit to Pull, it would show up in the status bar itself as shown below:

Pending_Sync_Commit

Here, it shows that 1 commit is required to be pulled from server and 1 commit is required to be pushed to the server. After clicking on Sync icon, the local branch and server branch would be synced and both the code base would be the same.

That’s it…

I hope this article would help you to setup Git for the first time where you have files in the local system and the same needs to be published to the Git server for the first time.

Happy coding!!!

Filed under: CodeProject, Visual Studio Code, Web Development
Image 21 Image 22 Image 23 Image 24 Image 25 Image 26 Image 27 Image 28

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Infinite Computer Solutions
India India
Dear Technologists,

This is Mohit Jain, working in Bangalore as Technical Architect. I love to work in Microsoft Technologies. I am having rich 16+ years of experience. Started career with VB, ASP then moved to .Net. I have worked with fortune 500 reputed clients like Microsoft, American Express, Iron Mountain and Xerox etc and helped them in Design, Solution, Execution and Implementation of enterprise applications.

I own MCTS in Web and Windows Development, MCPD in Web, Windows and Enterprise Development, MCSD in Web and Windows Development. I have extensive knowledge on ASP.Net, C#, VB.Net, ASP, JavaScript, Web Services, WCF Services and SQL Server.

If you have any challenges in .Net code, feel free to contact me at mail_mohitjain@yahoo.co.in, I will try my best to help you out.

Comments and Discussions

 
Questionwhy (Git) icon displayed on the left side bar doesn't exists ? Pin
Moustafa Ebrahem21-Jul-17 23:30
Moustafa Ebrahem21-Jul-17 23:30 
QuestionGitea Pin
RickZeeland26-Apr-17 23:14
mveRickZeeland26-Apr-17 23:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.