Skip to content

Commit

Permalink
Update 1 package
Browse files Browse the repository at this point in the history
mingw-w64-x86_64-git-credential-manager (2.4.1-1 -> 2.4.1-2)

Signed-off-by: Git for Windows Build Agent <ci@git-for-windows.build>
  • Loading branch information
Git for Windows Build Agent committed Jan 27, 2024
1 parent 5a447f5 commit 9d8b0cb
Show file tree
Hide file tree
Showing 23 changed files with 130 additions and 5 deletions.
121 changes: 121 additions & 0 deletions mingw64/share/doc/git-doc/git-credential-manager.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
<h1>Git Credential Manager</h1>

<p><a href="https://github.com/git-ecosystem/git-credential-manager/actions/workflows/continuous-integration.yml"><img src="https://github.com/git-ecosystem/git-credential-manager/actions/workflows/continuous-integration.yml/badge.svg" alt="Build Status" /></a></p>

<hr />

<p><a href="https://github.com/git-ecosystem/git-credential-manager">Git Credential Manager</a> (GCM) is a secure
<a href="https://git-scm.com/docs/gitcredentials">Git credential helper</a> built on <a href="https://dotnet.microsoft.com">.NET</a> that runs
on Windows, macOS, and Linux. It aims to provide a consistent and secure
authentication experience, including multi-factor auth, to every major source
control hosting service and platform.</p>

<p>GCM supports (in alphabetical order) <a href="https://azure.microsoft.com/en-us/products/devops">Azure DevOps</a>, Azure DevOps
Server (formerly Team Foundation Server), Bitbucket, GitHub, and GitLab.
Compare to Git's <a href="https://git-scm.com/book/en/v2/Git-Tools-Credential-Storage">built-in credential helpers</a>
(Windows: wincred, macOS: osxkeychain, Linux: gnome-keyring/libsecret), which
provide single-factor authentication support for username/password only.</p>

<p>GCM replaces both the .NET Framework-based
<a href="https://github.com/microsoft/Git-Credential-Manager-for-Windows">Git Credential Manager for Windows</a> and the Java-based
<a href="https://github.com/microsoft/Git-Credential-Manager-for-Mac-and-Linux">Git Credential Manager for Mac and Linux</a>.</p>

<h2>Install</h2>

<p>See the <a href="https://github.com/git-ecosystem/git-credential-manager/blob/release/docs/install.md">installation instructions</a> for the current version of GCM for
install options for your operating system.</p>

<h2>Current status</h2>

<p>Git Credential Manager is currently available for Windows, macOS, and Linux*.
GCM only works with HTTP(S) remotes; you can still use Git with SSH:</p>

<ul>
<li><a href="https://docs.microsoft.com/en-us/azure/devops/repos/git/use-ssh-keys-to-authenticate?view=azure-devops">Azure DevOps SSH</a></li>
<li><a href="https://help.github.com/en/articles/connecting-to-github-with-ssh">GitHub SSH</a></li>
<li><a href="https://confluence.atlassian.com/bitbucket/ssh-keys-935365775.html">Bitbucket SSH</a></li>
</ul>

<p>Feature|Windows|macOS|Linux*
-|:-:|:-:|:-:
Installer/uninstaller|&#10003;|&#10003;|&#10003;
Secure platform credential storage <a href="https://github.com/git-ecosystem/git-credential-manager/blob/release/docs/credstores.md">(see more)</a>|&#10003;|&#10003;|&#10003;
Multi-factor authentication support for Azure DevOps|&#10003;|&#10003;|&#10003;
Two-factor authentication support for GitHub|&#10003;|&#10003;|&#10003;
Two-factor authentication support for Bitbucket|&#10003;|&#10003;|&#10003;
Two-factor authentication support for GitLab|&#10003;|&#10003;|&#10003;
Windows Integrated Authentication (NTLM/Kerberos) support|&#10003;|<em>N/A</em>|<em>N/A</em>
Basic HTTP authentication support|&#10003;|&#10003;|&#10003;
Proxy support|&#10003;|&#10003;|&#10003;
<code>amd64</code> support|&#10003;|&#10003;|&#10003;
<code>x86</code> support|&#10003;|<em>N/A</em>|&#10007;
<code>arm64</code> support|best effort|&#10003;|best effort, no packages
<code>armhf</code> support|<em>N/A</em>|<em>N/A</em>|best effort, no packages</p>

<p>(*) GCM guarantees support only for <a href="https://learn.microsoft.com/en-us/dotnet/core/install/linux">the Linux distributions that are officially
supported by dotnet</a>.</p>

<h2>Supported Git versions</h2>

<p>Git Credential Manager tries to be compatible with the broadest set of Git
versions (within reason). However there are some know problematic releases of
Git that are not compatible.</p>

<ul>
<li><p>Git 1.x</p>

<p>The initial major version of Git is not supported or tested with GCM.</p></li>
<li><p>Git 2.26.2</p>

<p>This version of Git introduced a breaking change with parsing credential
configuration that GCM relies on. This issue was fixed in commit
<a href="https://github.com/git/git/commit/12294990c90e043862be9eb7eb22c3784b526340"><code>12294990</code></a> of the Git project, and released in Git
2.27.0.</p></li>
</ul>

<h2>How to use</h2>

<p>Once it's installed and configured, Git Credential Manager is called implicitly
by Git. You don't have to do anything special, and GCM isn't intended to be
called directly by the user. For example, when pushing (<code>git push</code>) to
<a href="https://azure.microsoft.com/en-us/products/devops">Azure DevOps</a>, <a href="https://bitbucket.org">Bitbucket</a>, or <a href="https://github.com">GitHub</a>, a
window will automatically open and walk you through the sign-in process. (This
process will look slightly different for each Git host, and even in some cases,
whether you've connected to an on-premises or cloud-hosted Git host.) Later Git
commands in the same repository will re-use existing credentials or tokens that
GCM has stored for as long as they're valid.</p>

<p>Read full command line usage <a href="https://github.com/git-ecosystem/git-credential-manager/blob/release/docs/usage.md">here</a>.</p>

<h3>Configuring a proxy</h3>

<p>See detailed information <a href="https://github.com/git-ecosystem/git-credential-manager/blob/release/docs/netconfig.md#http-proxy">here</a>.</p>

<h2>Additional Resources</h2>

<p>See the <a href="https://github.com/git-ecosystem/git-credential-manager/blob/release/docs/README.md">documentation index</a> for links to additional resources.</p>

<h2>Experimental Features</h2>

<ul>
<li><a href="https://github.com/git-ecosystem/git-credential-manager/blob/release/docs/windows-broker.md">Windows broker (experimental)</a></li>
</ul>

<h2>Future features</h2>

<p>Curious about what's coming next in the GCM project? Take a look at the <a href="https://github.com/git-ecosystem/git-credential-manager/milestones?direction=desc&amp;sort=due_date&amp;state=open">project
roadmap</a>! You can find more details about the construction of the
roadmap and how to interpret it <a href="https://github.com/git-ecosystem/git-credential-manager/discussions/1203">here</a>.</p>

<h2>Contributing</h2>

<p>This project welcomes contributions and suggestions.
See the <a href="CONTRIBUTING.md">contributing guide</a> to get started.</p>

<p>This project follows <a href="CODE_OF_CONDUCT.md">GitHub's Open Source Code of Conduct</a>.</p>

<h2>License</h2>

<p>We're <a href="LICENSE">MIT</a> licensed.
When using GitHub logos, please be sure to follow the
<a href="https://github.com/logos">GitHub logo guidelines</a>.</p>
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
mingw-w64-x86_64-git-credential-manager

%VERSION%
2.4.1-1
2.4.1-2

%BASE%
mingw-w64-git-credential-manager
Expand All @@ -17,16 +17,16 @@ Credential Manager for Git
any

%BUILDDATE%
1698961474
1706260488

%INSTALLDATE%
1698980404
1706324356

%PACKAGER%
Johannes Schindelin <johannes.schindelin@gmx.de>

%SIZE%
24678916
24685507

%GROUPS%
VCS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,8 @@ mingw64/doc/git-credential-manager/
mingw64/doc/git-credential-manager/LICENSE
mingw64/doc/git-credential-manager/NOTICE
mingw64/doc/git-credential-manager/README.md
mingw64/share/
mingw64/share/doc/
mingw64/share/doc/git-doc/
mingw64/share/doc/git-doc/git-credential-manager.html

Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ any
1682971619

%INSTALLDATE%
1706237965
1706324361

%PACKAGER%
Johannes Schindelin <johannes.schindelin@gmx.de>
Expand Down
Binary file modified var/lib/pacman/sync/clang32.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/clang32.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/clang64.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/clang64.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/clangarm64.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/clangarm64.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/git-for-windows-mingw32.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/git-for-windows-mingw32.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/git-for-windows.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/git-for-windows.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw32.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw32.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw64.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw64.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/ucrt64.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/ucrt64.db.sig
Binary file not shown.

0 comments on commit 9d8b0cb

Please sign in to comment.