Registry

Writing your own service and application entries can sometimes be a bit more work than we're feeling like and since Git-Tool is meant to make your life easier, not harder, we figured it would be a good idea to try and simplify this part for you as well.

To solve the problem, we added a central registry of config templates which you can search through and install with the gt config add command. This makes the process of setting up your Git-Tool config as easy as doing the following:

# Get a list of all the apps and services available to me
gt config list

# Add my favourite apps
gt config add apps/powershell
gt config add apps/powershell-admin
gt config add apps/vscode
gt config add apps/visualstudio

# Add the services I use
gt config add services/github
gt config add services/azure-devops

Browse

To get the latest list of apps and services in the registry, you can always use gt config list straight from your command line. Of course, here's the list if you're interested 😉.

Contributing

Thanks for choosing to contribute to the Git-Tool community ❤️! We'd like to make this as easy as possible, so keep reading for We're so happy that you're considering contributing an app or service config to Git-Tool's registry. In theory, all you need to do is write a yaml file and submit a PR to our GitHub repoopen in new window to get it added to the registry folder. We have some automated tests in place which should help ensure that what you are submitting is valid and those run locally as part of the standard Git-Tool test suite (run with cargo test if you have Rust installed).

Registry

Git-Tool's registry is simply a folder hosted on GitHubopen in new window. Specifically, it's the registry folder in the Git-Tool repo. Within this folder are folders for apps and services to help keep things organized.

For those who prefer a visual representation of what the registry looks like.

Example Template

Here is an example of what a registry template might look like and you are welcome to use it as the basis for your own. Keep reading for more information on what each field does and how to use them (or just wing it, if you're already familiar with how Git-Tool's apps and services are defined).

WARNING

We usually avoid bundling apps and services into a single file, but if you've got a compelling reason to do so - then we can certainly make an exception. The example below includes both apps and services to show how to use them, not because it's a good idea.

# yaml-language-server: $schema=https://schemas.sierrasoftworks.com/git-tool/v1/template.schema.json
name: Demo
description: This is an example of how to create a config template
version: 1.0.0
configs:
  # Your config should include either a service (like this)...
  - platform: any
    service:
      name: gh
      website: "https://github.com/{{ .Repo.FullName }}"
      gitUrl: "git@github.com:{{ .Repo.FullName }}.git"
      pattern: "*/*"
      api:
        kind: GitHub/v3
        url: https://api.github.com

  # Or an app (like this) but usually not both.
  - platform: windows
    app:
      name: shell
      command: powershell.exe

  # You can also add platform specific versions of each app
  - platform: linux
    app:
      name: shell
      command: pwsh

Template Structure

Registry templates are yaml files (with the .yaml extension) which Git-Tool will use to update your local config. They have a bit of metadata to explain to humans what they do, but the most important part is the list of configs which tell Git-Tool how to modify your local config file.

TIP

We publish a JSONSchemaopen in new window schema for Git-Tool templates which your editor can use to give you autocomplete and automatic validation. To include it, just add the following to the top of your template.

# yaml-language-server: $schema=https://schemas.sierrasoftworks.com/git-tool/v1/template.schema.json

name required

This is the human readable name you wish to give to this template. It doesn't need to match the names given to apps or services contained within, but it usually should be pretty close.

name: PowerShell Core

description required

The description is used to explain to humans what your template will add and why that might be of use to them. If possible, use plain Englishopen in new window and assume that the reader will not be familiar with the tool or service you are adding.

description: |
    Launches the PowerShell Core shell as your current user.
    PowerShell Core must be installed on your platform before use.
    
    https://github.com/PowerShell/PowerShell/releases

version required

The version is used to show humans when you have updated this template and it should follow SemVeropen in new window conventions. Currently Git-Tool doesn't keep track of this field, but in future we may add support for updating the items you have installed from the registry using this field.

version: 1.0.0

configs required

This is where the heart of the template fits in. The configs field is a list (array) of config templates which Git-Tool will apply to your config file. These templates can either be for an app or a service and require that you specify the platform that they support. Keep reading for details on what fields you use within each config.

configs:
  - platform: any
    app:
      name: shell
      command: pwsh
configs.*.platform required

When describing a config template, you need to provide the platform that it supports. This allows Git-Tool to apply the right template in situations where different platforms require different configuration.

The list of supported platform types includes:

  • any will apply to any platform.
  • windows will only apply to Windows platforms.
  • linux will only apply to Linux platforms.
  • darwin will only apply to Mac OS X platforms.
configs:
  - platform: linux
configs.*.app optional

When creating a config template which adds an app, you will use the app field to provide an application definition as you would in your normal config file. All of the normal app fields are supported.

WARNING

If you specify the app field, you will not be able to provide the service field in the same entry. Add a new item to the configs array if you need to do this.

configs:
  - app:
      name: shell
      command: bash
      args: [] # Optional
      environment: [] # Optional
configs.*.service optional

When creating a config template which adds a service, you will use the service field to provide a service definition as you would in your normal config file. All of the normal service fields are supported.

WARNING

If you specify the app field, you will not be able to provide the service field in the same entry. Add a new item to the configs array if you need to do this.

configs:
  - service:
      name: gh
      website: "https://github.com/{{ .Repo.FullName }}"
      gitUrl: "git@github.com:{{ .Repo.FullName }}.git"
      pattern: "*/*"

Creating a PR

The easiest way to get started adding a new app or service to the registry is by using the GitHub web editor to create your template and submit a PR.

Fill in the name of your app or service (this is the name people will use to install it, so keep it short but descriptive) and add your template. Once you're done, create a new PR for your change and we'll get to reviewing it for you!

Automated Testing

Our automated test suite on GitHub will check your PR to make sure that your template can be loaded by Git-Tool correctly and will warn you if there are any problems.

You can also run this same test suite locally if you have rust installed on your machine by cloning the Git-Tool repo and running cargo test in it. If you already have Git-Tool set up, this is as easy as:

# Replace this with your Git-Tool fork, if you have one
gt o gh:SierraSoftworks/git-tool
cargo test