Visual Studio For GitHub Repository

Introduction

GitHub is a popular platform for developers to manage the version and code of our day-to-day life. There are several ways to interact with GitHub and create a repository and commit code such as Git, GitHub Desktop, Visual Studio, and many more. However, in this article, we will learn how we can use Visual Studio 2022 to connect with GitHub, create a repository and commit code to GitHub. Most developers feel comfortable and easy to use UI in comparison to commands. So in this write-up, we will use and get familiar with Visual Studio as an alternative to the Github command.

Prerequisites

  • Visual Studio 2022

Step 1 - Firstly you need to open the project that you want to add to GitHub in Visual Studio 2022. Open your project as shown below.

Visual Studio for GitHub Repository

Step 2 - Once it is open, click on Add to Source Control as illustrated below.

Visual Studio for GitHub Repository

Then select Git as depicted below.

Visual Studio for GitHub Repository

Step 3 - Then you need to provide your Git and Repository details such as:

  1. Your GitHub account
  2. GitHub Owner UserName
  3. By default Git Repo name may create based on your project name however you can give a repository name according to your need or wish.
  4. Provide the description of your repository which is optional.

For my case, I had already login into the GitHub account on my machine, so account and owner details were auto-populated on the screen below.

Visual Studio for GitHub Repository

After that, if you want to make your repository public then unselect the Private repository.

Furthermore, if you are using Visual Studio Community Preview 2022 - 17.3.0 Preview 5.0 then you can get more options for your repository setup such as gitignore template, License template, and Readme file as portrayed below.

Visual Studio for GitHub Repository

Step 4 - Create and Push

After that, you click on Create and Push button which will create the repository in your GitHub and pushes the code over there.

Visual Studio for GitHub Repository

Once it is pushed you can see the changes in the Visual Studio itself as depicted below. Here, it has created a master branch and pushed the code to the master branch. Additionally, you can see it has created a local master branch as below.

Visual Studio for GitHub Repository

If you click on the remote tab in the above screen, then you can see it has created a master branch in origin as well.

Visual Studio for GitHub Repository

Alternatively, you can open your GitHub account and check the newly created repository. It should appear as shown below.

Visual Studio for GitHub Repository

Utilizing VS 2022 for GitHub for updated files

In this section, we will learn how we can use git in Visual Studio 2022 for committing and pushing the code to the GitHub repository.

Once you change the code you can see the newest changes files in the option Git Changes tab as illustrated below.

Visual Studio for GitHub Repository

Step 1 - Commit code locally

Provide the message in the enter a message field in the above screen and then click on Commit All.

Visual Studio for GitHub Repository

It commits the changes locally in your machine which you can see on the screen as portrayed below. Here, you have 1 outgoing commit.

Visual Studio for GitHub Repository

Step 2 - Fetch changes of remote Origin to your local

If you are only one person working on the repo, then you can click on the push option. If there are new changes in the GitHub repository(origin) then you need to first fetch the remote/origin and then can push the code.

The fetch option is depicted below.

Visual Studio for GitHub Repository

Step 3 - Push changes

The pushing code is illustrated below.

Visual Studio for GitHub Repository

Additionally, once you fetch the code you can directly click the sync option which firstly pulls the code and then pushes it to the remote origin.

Visual Studio for GitHub Repository

Once you pushed the code, you can see the changes in GitHub which should as like below.

Visual Studio for GitHub Repository

Moreover, you can explore some more options by clicking on the… option as depicted below to get familiar with other available git options in Visual Studio.

Visual Studio for GitHub Repository

Conclusion

Hence, in this article, we created a GitHub repository and pushed the code to the newly created repository in GitHub using Visual Studio 2022. In addition to this, we learned to push the changes to GitHub using Visual Studio. I hope this article will give you an easy way to manage your code in GitHub using the Visual Studio interface instead of the Git command or Git Hub desktop in an effective way.

Reference


Similar Articles