How to find the best gitignore for Visual Studio and Azure DevOps

This post came about as a result of a an interesting question raised by my good friend Richard Hundhausen in Accentient. It turned out into some very interesting observations, and a few ways of handling this.

Background
When you’re starting up a new git repository for a Visual Studio project, you need a .gitignore file that matches. The gitignore file ensures that working files and folders that are not to go into source control are kept out. As Visual Studio and its extensions are growing, this list of files and folders are increasing. You need to have a gitignore file that at least matches the version of Visual Studio you’re using.
Most developers notice files that they don’t think should be in source control, and exclude those (and then adds them to the gitignore file they have), but in many cases they don’t even know what that file is for, and it is inadvertently added in. Normally not causing any problem locally for that single developer, but then it may fail for the next developer down the line, or it may fail during CI builds.
So it is much better to get the correct and full gitignore file when you start up your project. Less work later!
And what could possibly go wrong?

The multiple ways of creating a gitignore file

a) Start by creating a new Visual Studio project, either VS 2017 or VS 2019, select to add it to source control. You then get a .gitignore file from Visual Studio
b) Start by creating a new Azure DevOps git repository, and select to add a gitignore file. (You can also do the same if you create a new GitHub repository, it has the same functionality)
c) Copy the raw gitignore file from github/gitignore repository

Let us have a look at the results of this:

This is rather disappointing, right?
The ones from Visual Studio 2017 and 2019 are equal (no 3 and 4 above) – which is good – but they are quite a bit less than the originator (no 1 above) from github.
The one from Azure Devops (no 2 above) is better off, but still not quite there.
And yes, the differences are significant.

The screen shots below are from comparison with between the Visual Studio and the originator, originator on the left side.

The reasons for these being “off”, is that the tools don’t download from the originator source, but maintain their own copy. And this copy is not updated regularly.

This means that you must either update the gitignore file yourself, and ensure it is sufficient, or even better, just use another tool to get it down. Fortunately that is not so hard.

Gitignore locations
The gitignore file is given as an option, or a result, in several different places. The issue is that very few of these are really updated to the latest. We’ll have a look at that, but first – there IS an originating site, holding the one and only true gitignore file.
The site is at https://github.com/github/gitignore. Whenever someone need to add something to the file, they can raise a pull request here, and the maintainers ensures that it is properly checked and then merged in. This is what allows for a lot of 3rd party suppliers to add to this file and keep it properly updated.
If you wonder why it is placed here, and not at some Visual Studio site, it is because there are a lot of other gitignore files, for a ton of other tools, also kept at the same repository.

There has been complaints on this site not accepting Pull Requests too easily, the maintainers may be a bit restrictive – and that may be for good reasons too. Anyway, this has led to a separate repository being created, at https://github.com/dvcs/gitignore. This site is actively beeing synced from the previous site, but adds more gitignore types for different 3rd party tools, and may also extend the existing ones through patching. Details of this has been documented by one of the originators of this system.

What is also interesting by this system, is that they expose a website, gitignore.io, and a corresponding REST Api for accessing this.

Currently (January 2019), the Visual Studio gitignore file and the one from gitignore.io are identical.

Tools for downloading gitignore

  1. First option you have is to simply copy the raw content from the originator source, using this link.
  2. Second option you have is to simply copy the raw content from the gitignore.io site, using this link.
  3. Third option is to install the IFix command line tool, and use the command
    IFix gitignore -r -f
    to get a fresh latest copy down. Alternatively, if you already have one, using
    IFix -m -f
    to merge your own existing gitignore with the latest from the originator source.
    Using IFix to merge is a pretty good way of handling existing ones, as you may have entered ignores that you want to keep, but still need to update.
  4. Fourth option is to use the gitignore.io REST Api

We’re going to look a bit more at using the REST Api. There is a tool called cUrl which is perfect for accessing a url, and also for calling a REST Api. It’s use is documented by the gitignore.io people.

We can add the curl command with it’s parameters as a git alias, like I have shown in two earlier blogposts (and second one here).

So, add the following lineinto your git config file:

ignore = "!gi() { curl -L -s https://www.gitignore.io/api/$@ ;}; gi"

You can then add a gitignore file doing:

git ignore visualstudio > .gitignore

And of course you can simplify this further by adding the following alias:

ignorevs = !git ignore visualstudio > .gitignore

Then all you need to write is as shown below:

And for being able to update it, you can add the following IFix command as another alias to your gitconfig

updategitignore = "!f() { exec ifix gitignore -m -f;}; f"

resulting in the following when there is an update available

About terje

See http://about.me/terjes