{"id":27063625,"url":"https://github.com/kzu/GitInfo","last_synced_at":"2025-04-05T16:01:49.879Z","repository":{"id":32682153,"uuid":"36271064","full_name":"devlooped/GitInfo","owner":"devlooped","description":"Git and SemVer Info from MSBuild, C# and VB","archived":false,"fork":false,"pushed_at":"2024-10-29T19:43:30.000Z","size":491,"stargazers_count":558,"open_issues_count":4,"forks_count":70,"subscribers_count":12,"default_branch":"main","last_synced_at":"2024-10-29T20:11:32.529Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://clarius.org/GitInfo","language":"Pascal","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devlooped.png","metadata":{"files":{"readme":"readme.md","changelog":"changelog.md","contributing":null,"funding":".github/FUNDING.yml","license":"license.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"devlooped"}},"created_at":"2015-05-26T04:05:59.000Z","updated_at":"2024-10-29T19:43:34.000Z","dependencies_parsed_at":"2024-01-02T22:44:25.887Z","dependency_job_id":"96bba0da-b7d6-4dca-8baf-95a618a11073","html_url":"https://github.com/devlooped/GitInfo","commit_stats":null,"previous_names":["kzu/gitinfo"],"tags_count":24,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlooped%2FGitInfo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlooped%2FGitInfo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlooped%2FGitInfo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlooped%2FGitInfo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devlooped","download_url":"https://codeload.github.com/devlooped/GitInfo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247361593,"owners_count":20926641,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-05T16:01:39.849Z","updated_at":"2025-04-05T16:01:49.861Z","avatar_url":"https://github.com/devlooped.png","language":"Pascal","funding_links":["https://github.com/sponsors/devlooped","https://github.com/sponsors"],"categories":["Frameworks, Libraries and Tools","框架, 库和工具","Build Automation"],"sub_categories":["Build Automation","自动部署"],"readme":"![Icon](https://raw.githubusercontent.com/devlooped/GitInfo/main/assets/images/git.png) GitInfo\n============\n\nGit Info from MSBuild, C# and VB\n\n\u003e A fresh and transparent approach to Git information retrieval from MSBuild and Code without\n\u003e using any custom tasks or compiled code and tools, obscure settings, format strings, etc.\n\n[![Latest version](https://img.shields.io/nuget/v/GitInfo.svg)](https://www.nuget.org/packages/GitInfo)\n[![Downloads](https://img.shields.io/nuget/dt/GitInfo.svg)](https://www.nuget.org/packages/GitInfo)\n[![License](https://img.shields.io/:license-MIT-blue.svg)](https://opensource.org/licenses/mit-license.php)\n[![Build](https://github.com/devlooped/GitInfo/actions/workflows/build.yml/badge.svg)](https://github.com/devlooped/GitInfo/actions/workflows/build.yml)\n\nInstall via [NuGet](https://www.nuget.org/packages/GitInfo):\n\n```pwsh\nPM\u003e Install-Package GitInfo\n```\n\n\u003c!-- include https://github.com/devlooped/.github/raw/main/sponsorlinkr.md --\u003e\n*This project uses [SponsorLink](https://github.com/devlooped#sponsorlink) to attribute sponsor status (direct, indirect or implicit).*\n*For IDE usage, sponsor status is required. IDE-only warnings will be issued after a grace period otherwise.*\n\n\u003c!-- https://github.com/devlooped/.github/raw/main/sponsorlinkr.md --\u003e\n\n## Usage\n\u003c!-- #content --\u003e\nBy default, if the containing project is a C#, F# or VB project, a compile-time generated\nsource file will contain all the git information and can be accessed from anywhere within\nthe assembly, as constants in a `ThisAssembly` (partial) class and its nested `Git` static class:\n\n```csharp\nConsole.WriteLine(ThisAssembly.Git.Commit);\n```\n\n\u003e NOTE: you may need to close and reopen the solution in order\n\u003e for Visual Studio to refresh intellisense and show the\n\u003e ThisAssembly type the first time after installing the package.\n\nBy default, GitInfo will also set `$(Version)` and `$(PackageVersion)` which the .NET\nSDK uses for deriving the AssemblyInfo, FileVersion and InformationalVersion values,\nas well as for packing. This default version is formatted from the following populated\nMSBuild properties: `$(GitSemVerMajor).$(GitSemVerMinor).$(GitSemVerPatch)$(GitSemVerDashLabel)+$(GitBranch).$(GitCommit)`.\n\nSo, straight after install and build/pack, you will get some versioning in place :).\n\nAlternatively, you can opt-out of this default versioning by setting `GitVersion=false`\nin your project file, if you want to just leverage the Git information and/or version\nproperties/constants yourself:\n\n```xml\n\u003cPropertyGroup\u003e\n  \u003cGitVersion\u003efalse\u003c/GitVersion\u003e\n\u003c/PropertyGroup\u003e\n```\n\nThis allows you to use the provided constants to build any versioning attributes you want,\nwith whatever information you want, without resorting to settings, format strings or anything,\njust plain code:\n\nC#:\n```csharp\n[assembly: AssemblyVersion(ThisAssembly.Git.BaseVersion.Major + \".\" + ThisAssembly.Git.BaseVersion.Minor + \".\" + ThisAssembly.Git.BaseVersion.Patch)]\n\n[assembly: AssemblyFileVersion(ThisAssembly.Git.SemVer.Major + \".\" + ThisAssembly.Git.SemVer.Minor + \".\" + ThisAssembly.Git.SemVer.Patch)]\n\n[assembly: AssemblyInformationalVersion(\n    ThisAssembly.Git.SemVer.Major + \".\" +\n    ThisAssembly.Git.SemVer.Minor + \".\" +\n    ThisAssembly.Git.Commits + \"-\" +\n    ThisAssembly.Git.Branch + \"+\" +\n    ThisAssembly.Git.Commit)]\n```\n\nF#:\n```fsharp\nmodule AssemblyInfo\n\nopen System.Reflection\n\n[\u003cassembly: AssemblyVersion(ThisAssembly.Git.BaseVersion.Major + \".\" + ThisAssembly.Git.BaseVersion.Minor + \".\" + ThisAssembly.Git.BaseVersion.Patch)\u003e]\n\n[\u003cassembly: AssemblyFileVersion(ThisAssembly.Git.SemVer.Major + \".\" + ThisAssembly.Git.SemVer.Minor + \".\" + ThisAssembly.Git.SemVer.Patch)\u003e]\n\n[\u003cassembly: AssemblyInformationalVersion(\n    ThisAssembly.Git.SemVer.Major + \".\" +\n    ThisAssembly.Git.SemVer.Minor + \".\" +\n    ThisAssembly.Git.Commits + \"-\" +\n    ThisAssembly.Git.Branch + \"+\" +\n    ThisAssembly.Git.Commit)\u003e]\n\ndo ()\n```\n\nVB:\n```vbnet\n\u003cAssembly: AssemblyVersion(ThisAssembly.Git.BaseVersion.Major + \".\" + ThisAssembly.Git.BaseVersion.Minor + \".\" + ThisAssembly.Git.BaseVersion.Patch)\u003e\n\n\u003cAssembly: AssemblyFileVersion(ThisAssembly.Git.SemVer.Major + \".\" + ThisAssembly.Git.SemVer.Minor + \".\" + ThisAssembly.Git.SemVer.Patch)\u003e\n\n\u003cAssembly: AssemblyInformationalVersion(\n    ThisAssembly.Git.SemVer.Major + \".\" +\n    ThisAssembly.Git.SemVer.Minor + \".\" +\n    ThisAssembly.Git.Commits + \"-\" +\n    ThisAssembly.Git.Branch + \"+\" +\n    ThisAssembly.Git.Commit)\u003e\n```\n\n\u003e NOTE: when generating your own assembly version attributes, you will need to turn off\n\u003e the corresponding assembly version attribute generation from the .NET SDK, by setting\n\u003e the relevant properties to false: `GenerateAssemblyVersionAttribute`,\n\u003e `GenerateAssemblyFileVersionAttribute` and `GenerateAssemblyInformationalVersionAttribute`.\n\nYou can also just build your own versioning logic in a target that depends on GitInfo using plain MSBuild:\n\n```xml\n\u003cPropertyGroup\u003e\n  \u003cGitVersion\u003efalse\u003c/GitVersion\u003e \u003c!-- we'll do our own versioning --\u003e\n\u003c/PropertyGroup\u003e\n\n\u003cItemGroup\u003e\n  \u003cPackageReference Include=\"GitInfo\" PrivateAssets=\"all\" /\u003e\n\u003c/ItemGroup\u003e\n\n\u003cTarget Name=\"PopulateInfo\" DependsOnTargets=\"GitVersion\" BeforeTargets=\"GetAssemblyVersion;GenerateNuspec;GetPackageContents\"\u003e\n  \u003cPropertyGroup\u003e\n    \u003cVersion\u003e$(GitSemVerMajor).$(GitSemVerMinor).$(GitSemVerPatch)$(GitSemVerDashLabel)+$(GitBranch).$(GitCommit)\u003c/Version\u003e\n    \u003cPackageVersion\u003e$(Version)\u003c/PackageVersion\u003e\n    \u003cRepositoryBranch\u003e$(GitBranch)\u003c/RepositoryBranch\u003e\n    \u003cRepositoryCommit\u003e$(GitCommit)\u003c/RepositoryCommit\u003e\n    \u003cSourceRevisionId\u003e$(GitBranch) $(GitCommit)\u003c/SourceRevisionId\u003e\n  \u003c/PropertyGroup\u003e\n\u003c/Target\u003e\n```\n\n\u003e NOTE: because the provided properties are populated via targets that need to run\n\u003e before they are available, you cannot use the GitInfo-provided properties in a\n\u003e PropertyGroup at the project level. You can only use them from within a target that\n\u003e in turn depends on the relevant target from GitInfo (typically, `GitVersion` as\n\u003e shown above, if you consume the SemVer properties).\n\nBecause this information is readily available whenever you build the project, you\nnever depend on CI build scripts that generate versions for you, and you can\nalways compile locally exactly the same version of an assembly that was built by\na CI server.\n\nYou can read more about this project at the\n[GitInfo announcement blog post](http://www.cazzulino.com/git-info-from-msbuild-and-code.html).\n\n## Details\n\nExposes the following information for use directly from any MSBuild\ntarget that depends on the GitInfo target:\n\n```\n  $(GitRepositoryUrl)\n  $(GitBranch)\n  $(GitCommit)\n  $(GitCommitDate)\n  $(GitCommits)\n  $(GitTag)\n  $(GitBaseTag)\n  $(GitBaseVersionMajor)\n  $(GitBaseVersionMinor)\n  $(GitBaseVersionPatch)\n  $(GitSemVerMajor)\n  $(GitSemVerMinor)\n  $(GitSemVerPatch)\n  $(GitSemVerLabel)\n  $(GitSemVerDashLabel)\n  $(GitSemVerSource)\n  $(GitIsDirty)\n```\n\nFor C#, F# and VB, constants are generated too so that the same information can be\naccessed from code:\n\n```\n  ThisAssembly.Git.RepositoryUrl\n  ThisAssembly.Git.Branch\n  ThisAssembly.Git.Commit\n  ThisAssembly.Git.Commits\n  ThisAssembly.Git.Tag\n  ThisAssembly.Git.BaseTag\n  ThisAssembly.Git.BaseVersion.Major\n  ThisAssembly.Git.BaseVersion.Minor\n  ThisAssembly.Git.BaseVersion.Patch\n  ThisAssembly.Git.SemVer.Major\n  ThisAssembly.Git.SemVer.Minor\n  ThisAssembly.Git.SemVer.Patch\n  ThisAssembly.Git.SemVer.Label\n  ThisAssembly.Git.SemVer.DashLabel\n  ThisAssembly.Git.SemVer.Source\n  ThisAssembly.Git.IsDirty\n```\n\nAvailable [MSBuild properties](https://learn.microsoft.com/en-us/visualstudio/msbuild/msbuild-properties)\nto customize the behavior:\n\n```\n  $(GitVersion): set to 'false' to avoid setting Version and PackageVersion to a default version with format:\n                 $(GitSemVerMajor).$(GitSemVerMinor).$(GitSemVerPatch)$(GitSemVerDashLabel)+$(GitBranch).$(GitCommit)\n\n  $(GitThisAssembly): set to 'false' to prevent assembly metadata and constants generation.\n\n  $(GitThisAssemblyMetadata): set to 'false' to prevent assembly metadata generation only. Defaults to 'false'.\n                              If 'true', it will also provide assembly metadata attributes for each of the populated values.\n\n  $(ThisAssemblyNamespace): allows overriding the namespace for the ThisAssembly class. Defaults to the global namespace.\n\n  $(GitRemote): name of remote to get repository url for. Defaults to 'origin'.\n\n  $(GitBranchCI): determines whether the branch name should be populated from default environment variables used by the CI system. Default to 'true'.\n\n  $(GitDefaultBranch): determines the base branch used to calculate commits on top of current branch. Defaults to 'main'.\n\n  $(GitVersionFile): determines the name of a file in the Git repository root used to provide the base version info. Defaults to 'GitInfo.txt'.\n\n  $(GitCommitsRelativeTo): optionally specifies an alternative directory for counting commits on top of the base version. Defaults to the $(GitVersionFile) directory.\n\n  $(GitCommitsIgnoreMerges): set to 'true' to ignore merge commits when calculating the number of commits. Defaults to 'false'.\n\n  $(GitInfoReportImportance): allows rendering all the retrieved git information with the specified message importance ('high', 'normal' or 'low'). Defaults to 'low'.\n\n  $(GitIgnoreBranchVersion) and $(GitIgnoreTagVersion): determines whether the branch and tags (if any) will be used to find a base version. Defaults to empty value (no ignoring).\n\n  $(GitNameRevOptions): options passed to git name-rev when finding a branch name for a commit (Detached head). The default is '--refs=refs/heads/* --no-undefined --always'\n                        meaning branch names only, falling back to commit hash. For the legacy behavior where $(GitBranch) for detached head can also be a tag name, use '--refs=refs/*'.\n                        Refs can be included and excluded, see git name-rev docs.\n\n  $(GitSkipCache): whether to cache the Git information determined in a previous build in a GitInfo.cache for performance reasons. Defaults to empty value (no ignoring).\n\n  $(GitCachePath): where to cache the determined Git information. Gives the chance to use a shared location for different projects. This can improve the overall build time.\n                   Has to end with a path seperator Defaults to empty value ('$(IntermediateOutputPath)').\n\n  $(GitTagRegex): regular expression used with git describe to filter the tags to consider for base version lookup. Defaults to * (all).\n\n  $(GitBaseVersionRegex): regular expression used to match and validate valid base versions in branch, tag or file sources. By default, matches any string that *ends* in a valid SemVer2 string.\n                          Defaults to 'v?(?\u003cMAJOR\u003e\\d+)\\.(?\u003cMINOR\u003e\\d+)\\.(?\u003cPATCH\u003e\\d+)(?:\\-(?\u003cLABEL\u003e[\\dA-Za-z\\-\\.]+))?$|^(?\u003cLABEL\u003e[\\dA-Za-z\\-\\.]+)\\-v?(?\u003cMAJOR\u003e\\d+)\\.(?\u003cMINOR\u003e\\d+)\\.(?\u003cPATCH\u003e\\d+)$'\n\n  $(GitCommitDateFormat): value passed as the format option when trying to retrieve the git commit date. Defaults to %%cI (windows) or %cI (non windows).\n```\n\n## Goals\n\n- No compiled code or tools -\u003e 100% transparency\n- Trivially added/installed via [a NuGet package](https://www.nuget.org/packages/GitInfo)\n- No format strings or settings to learn\n- Simple well-structured [.targets file](https://github.com/kzu/GitInfo/blob/main/src/GitInfo/build/GitInfo.targets)\n  with plain MSBuild and no custom tasks\n- [Optional embedding](https://github.com/kzu/GitInfo/blob/main/src/GitInfo/build/GitInfo.AssemblyMetadata.targets)\n  of Git info in assembly metadata\n- Optional use of Git info to build arbitrary assembly/file version information, both\n  [in C#](https://github.com/kzu/GitInfoDemo/blob/main/GitInfoDemo/Properties/AssemblyInfo.cs#L10) as well\n  [as VB](https://github.com/kzu/GitInfoDemo/blob/main/GitInfoDemoVB/My%20Project/AssemblyInfo.vb#L8).\n- Trivially modified/improved generated code by just adjusting a\n  [C#](https://github.com/kzu/GitInfo/blob/main/src/GitInfo/build/GitInfo.cs.pp) or\n  [F#](https://github.com/kzu/GitInfo/blob/main/src/GitInfo/build/GitInfo.fs.pp) or\n  [VB](https://github.com/kzu/GitInfo/blob/main/src/GitInfo/build/GitInfo.vb.pp) template\n  included in the [NuGet package](https://www.nuget.org/packages/GitInfo)\n- 100% incremental build-friendly and high-performing (all proper Inputs/Outputs in place, smart caching of Git info, etc.)\n\n\u003c!-- #content --\u003e\n\u003c!-- include https://github.com/devlooped/sponsors/raw/main/footer.md --\u003e\n# Sponsors \n\n\u003c!-- sponsors.md --\u003e\n[![Clarius Org](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/clarius.png \"Clarius Org\")](https://github.com/clarius)\n[![MFB Technologies, Inc.](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/MFB-Technologies-Inc.png \"MFB Technologies, Inc.\")](https://github.com/MFB-Technologies-Inc)\n[![Torutek](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/torutek-gh.png \"Torutek\")](https://github.com/torutek-gh)\n[![DRIVE.NET, Inc.](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/drivenet.png \"DRIVE.NET, Inc.\")](https://github.com/drivenet)\n[![Keith Pickford](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Keflon.png \"Keith Pickford\")](https://github.com/Keflon)\n[![Thomas Bolon](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/tbolon.png \"Thomas Bolon\")](https://github.com/tbolon)\n[![Kori Francis](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/kfrancis.png \"Kori Francis\")](https://github.com/kfrancis)\n[![Toni Wenzel](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/twenzel.png \"Toni Wenzel\")](https://github.com/twenzel)\n[![Uno Platform](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/unoplatform.png \"Uno Platform\")](https://github.com/unoplatform)\n[![Dan Siegel](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/dansiegel.png \"Dan Siegel\")](https://github.com/dansiegel)\n[![Reuben Swartz](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/rbnswartz.png \"Reuben Swartz\")](https://github.com/rbnswartz)\n[![Jacob Foshee](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jfoshee.png \"Jacob Foshee\")](https://github.com/jfoshee)\n[![](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Mrxx99.png \"\")](https://github.com/Mrxx99)\n[![Eric Johnson](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/eajhnsn1.png \"Eric Johnson\")](https://github.com/eajhnsn1)\n[![Ix Technologies B.V.](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/IxTechnologies.png \"Ix Technologies B.V.\")](https://github.com/IxTechnologies)\n[![David JENNI](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/davidjenni.png \"David JENNI\")](https://github.com/davidjenni)\n[![Jonathan ](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Jonathan-Hickey.png \"Jonathan \")](https://github.com/Jonathan-Hickey)\n[![Charley Wu](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/akunzai.png \"Charley Wu\")](https://github.com/akunzai)\n[![Jakob Tikjøb Andersen](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jakobt.png \"Jakob Tikjøb Andersen\")](https://github.com/jakobt)\n[![Tino Hager](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/tinohager.png \"Tino Hager\")](https://github.com/tinohager)\n[![Ken Bonny](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/KenBonny.png \"Ken Bonny\")](https://github.com/KenBonny)\n[![Simon Cropp](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/SimonCropp.png \"Simon Cropp\")](https://github.com/SimonCropp)\n[![agileworks-eu](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/agileworks-eu.png \"agileworks-eu\")](https://github.com/agileworks-eu)\n[![sorahex](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/sorahex.png \"sorahex\")](https://github.com/sorahex)\n[![Zheyu Shen](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/arsdragonfly.png \"Zheyu Shen\")](https://github.com/arsdragonfly)\n[![Vezel](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/vezel-dev.png \"Vezel\")](https://github.com/vezel-dev)\n[![ChilliCream](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/ChilliCream.png \"ChilliCream\")](https://github.com/ChilliCream)\n[![4OTC](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/4OTC.png \"4OTC\")](https://github.com/4OTC)\n[![Vincent Limo](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/v-limo.png \"Vincent Limo\")](https://github.com/v-limo)\n[![Jordan S. Jones](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jordansjones.png \"Jordan S. Jones\")](https://github.com/jordansjones)\n[![domischell](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/DominicSchell.png \"domischell\")](https://github.com/DominicSchell)\n[![Joseph Kingry](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jkingry.png \"Joseph Kingry\")](https://github.com/jkingry)\n\n\n\u003c!-- sponsors.md --\u003e\n\n[![Sponsor this project](https://raw.githubusercontent.com/devlooped/sponsors/main/sponsor.png \"Sponsor this project\")](https://github.com/sponsors/devlooped)\n\u0026nbsp;\n\n[Learn more about GitHub Sponsors](https://github.com/sponsors)\n\n\u003c!-- https://github.com/devlooped/sponsors/raw/main/footer.md --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkzu%2FGitInfo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkzu%2FGitInfo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkzu%2FGitInfo/lists"}