Tag: Git

DeveloperDevelopmentGitHub

GitHub is now free for teams

GitHub announced that their making private repositories with unlimited collaborators available to all GitHub accounts. This means all of the core GitHub functionality is free for everyone.

For details about what features are included and compare plans, checkout the pricing page at https://github.com/pricing

Enjoy!

Resources

https://github.blog/2020-04-14-github-is-now-free-for-teams/

Development

Introduction to Git Version Control Workflow – Build Azure

Keeping track of file versions has been a long time issue in the world of software. This remains true if you’re writing source code for an application, com
— Read on buildazure.com/2018/02/21/introduction-to-git-version-control-workflow/

Uncategorized

How to Configure Git in Visual Studio to Prune Branches during a Fetch

If you’ve been using Git from within Visual Studio 2017 you might be aware of the fact that when performing a fetch it would not automatically prune your local list of branches that no longer exist on the server. Typically you would have to open up a Command Prompt and run the following command to cleanup your list of branches that exist on the remote:

> git remote prune origin

image

Well now with Visual Studio 2017 Update 5 you can now configure your global and repository settings to prune your local list of branches on every fetch. Let’s take a look at how you can configure this.

First download and install Visual Studio 2017 Update 5. You can do this from within Visual Studio under the Tools menu:

image

Once you have Visual Studio 2017 Update 5 installed, go to the Team Explorer pane and click on Settings where you can configure your default behavior for your Global and/or Repository Settings:

image

image

Now you can change the setting to prune remote branches on every fetch. In my opinion this should be the default value.

image

Another nice addition to the Git settings in Visual Studio 2017 Update 5 is the ability to Rebase your changes when you pull. I’ll explore that in a future post.

In summary when enabling the prune on every fetch, this means your local list of branches is always up-to-date with the remote. Pruning will cleanup and remove your local tracking branches that no longer exist on the server.

Enjoy!

References

Git Configuration: Configure your default behavior

Development

GitHub for Visual Studio now allows Pull Request Comments from IDE

0917vsm_github_vs

GitHub for Visual Studio 2.3 was recently released and it brought new functionality that now allows you to add pull request comments directly from the IDE.

To get started you  will need the latest version of GitHub Extension for Visual Studio. Next open up a pull request from the GitHub pane and while viewing a file you can click on the left gutter (see blue plus button) to add your feedback, all without leaving Visual Studio.

image

This functionality is still pretty limited but its a step in the right direction. I look forward to more GitHub online functionality making it’s way to this great extension.

Enjoy!

References

Inline comments in GitHub for Visual Studio