GitVersion

From git log to SemVer in no time (by GitTools)

GitVersion Alternatives

Similar projects and alternatives to GitVersion

  1. ASP.NET Core

    ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. semver

    Semantic Versioning Specification

  4. gitflow

    Git extensions to provide high-level repository operations for Vincent Driessen's branching model.

  5. semantic-release

    :package::rocket: Fully automated version management and package publishing

  6. GORM

    The fantastic ORM library for Golang, aims to be developer friendly

  7. ko

    Build and deploy Go applications

  8. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  9. kubernetes-external-secrets

    Discontinued Integrate external secret management systems with Kubernetes

  10. setup-java

    11 GitVersion VS setup-java

    Set up your GitHub Actions workflow with a specific version of Java

  11. GitExtensions

    Git Extensions is a standalone UI tool for managing git repositories. It also integrates with Windows Explorer and Microsoft Visual Studio (2015/2017/2019).

  12. Verlite

    Automatically version projects via semantic git tags with a focus on being lite, optimized for continuous delivery.

  13. LibGit2Sharp

    Git + .NET = ā¤

  14. jwx

    8 GitVersion VS jwx

    Complete implementation of JWx (Javascript Object Signing and Encryption/JOSE) technologies for Go. #golang #jwt #jws #jwk #jwe

  15. setup-dotnet

    6 GitVersion VS setup-dotnet

    Set up your GitHub Actions workflow with a specific version of the .NET core sdk

  16. Bonobo Git Server

    Bonobo Git Server for Windows is a web application you can install on your IIS and easily manage and connect to your git repositories. Go to homepage for release and more info.

  17. NGit

    Discontinued Automated jgit port to c#

  18. GitRead.Net

    .Net Standard library for reading Git repository data

  19. flux2-multi-tenancy

    Manage multi-tenant clusters with Flux

  20. minver

    šŸ· Minimalistic versioning using Git tags.

  21. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better GitVersion alternative or higher similarity.

GitVersion discussion

Log in or Post with

GitVersion reviews and mentions

Posts with mentions or reviews of GitVersion. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-12-03.
  • Semantic Versioning using GitVersion YAML file for your .NET, Java, and Kotlin projects' CI/CD
    7 projects | dev.to | 3 Dec 2024
    name: Java Build and Test With Gradle on: [push, pull_request, workflow_dispatch] jobs: build: runs-on: ubuntu-latest permissions: contents: read steps: - name: Checkout uses: actions/[email protected] with: fetch-depth: 0 - name: Set up JDK 23 uses: actions/[email protected] #https://github.com/actions/setup-java with: java-version: '23' distribution: 'oracle' - name: Install GitVersion 6.0.5 for Gradle run: | wget -q -O gitversion.tar.gz https://github.com/GitTools/GitVersion/releases/download/6.0.5/gitversion-linux-x64-6.0.5.tar.gz mkdir gitversion_extracted tar -xzf gitversion.tar.gz -C gitversion_extracted ls -R gitversion_extracted sudo mv gitversion_extracted/gitversion /usr/local/bin/gitversion sudo chmod +x /usr/local/bin/gitversion - name: Setup Gradle 8.11.1 uses: gradle/actions/setup-gradle@v4 #https://github.com/gradle/actions/blob/main/docs/setup-gradle.md#build-with-a-specific-gradle-version with: gradle-version: '8.11.1' - name: Build with Gradle 8.11.1 run: gradle build --scan --warning-mode all dependency-submission: # See: https://github.com/gradle/actions/blob/main/dependency-submission/README.md runs-on: ubuntu-latest permissions: contents: write steps: - name: Checkout uses: actions/[email protected] - name: Set up JDK 23 uses: actions/[email protected] with: java-version: '23' distribution: 'oracle' - name: Setup Gradle 8.11.1 uses: gradle/actions/setup-gradle@v4 with: gradle-version: '8.11.1' - name: Setup Gradle Wrapper run: gradle wrapper - name: Generate and submit dependency graph uses: gradle/actions/dependency-submission@v4
  • Golang RESTAPI boilerplate repository
    7 projects | /r/golang | 2 May 2023
    Gitversion: It reads your commit history and generates a semver version out of it. Say you are compiling main branch and have a tag 1.0. Then, you squash 3 PRs. When you build this version, the new version number will be 1.0.3. You can configure it to be smarter about increasing major, minor, patch fields. I typically use prefix on the commit messages so that it generates versions correctly. See more at https://gitversion.net/docs/
  • Deploying Flutter applications to Google Play using Github actions
    5 projects | dev.to | 15 Sep 2022
    GitVersion is not available by default and needs to be installed beforehand if we want to use the features it offers. The action is available here.
  • How to automate the versioning of projects?
    3 projects | /r/csharp | 7 Sep 2022
    Check this out https://gitversion.net/docs/
  • Wrote a CLI application to increase .NET's projects version by Semver
    3 projects | /r/dotnet | 29 Aug 2022
    At work we use https://gitversion.net/docs/ in our devops pipelines. Similaf to git-semver it generates a version based on what's published previously.
  • Managing Embedded SW revs?
    4 projects | /r/embedded | 10 Aug 2022
    Under Linux I use gitflow and gitversion. The former helps me with branch and tags management, the latter keep tracks of the semantic version in a semi-automatic fashion (given a branch/commit/tag it generate a semver automatically based on the repo log). Gitflow should be supported by GUI tools too, but I'm more a CLI guy.
  • How do you track which version of microservice is deployed on a stage at any given point
    1 project | /r/microservices | 13 Dec 2021
    I’m not sure about in Bitbucket, but our pipeline has installed GitVersion which ups the build version based on SemVer. https://gitversion.net/docs/ We have a HealthCheck endpoint to return this version.
  • Automating release notes with conventional commits
    2 projects | /r/csharp | 13 Dec 2021
    I know that GitVersion exists, which I think can automatically calculate the version number for me. But it's not entirely clear to me that it will do this. Also it doesn't seem to have a nbgv set-version equivalent that will just create a tag based on the calculated version number.
  • Kuberentes CI/CD
    4 projects | /r/kubernetes | 26 Oct 2021
    Kind of like you mention though, I tend to still create a build script using gitversion then just have the GitHub Action kick off the script. I find value in being able to create artifacts on a developer machine so having a simple script to run makes that as painless as possible and when I last looked a year or so ago there wasn't a good way of running GitHub Actions on your development machine.
  • Constant merge conflicts on csproj files
    3 projects | /r/dotnet | 6 Oct 2021
    Self promotion: I made Verlite for this purpose, tho something like GitVersion might be more suitable for your workflow.
  • A note from our sponsor - SaaSHub
    www.saashub.com | 15 May 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic GitVersion repo stats
13
2,961
9.6
9 days ago

Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com

Did you know that C# is
the 10th most popular programming language
based on number of references?