1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
.\" Automatically generated by Pandoc 3.1.7
.\"
.TH "GIT-CREDENTIAL-OAUTH" "1" "" "2023-08-12" ""
.SH NAME
git-credential-oauth - Git credential helper that authenticates to
GitHub and other forges using OAuth
.SH SYNOPSIS
\f[CR]git-credential-oauth [<options>] <action>\f[R]
.SH DESCRIPTION
A read-only Git credential helper that authenticates to GitHub and other
forges using OAuth.
.PP
Example configuration for Git:
.IP
.EX
git config --global --unset-all credential.helper
git config --global --add credential.helper \[dq]cache --timeout 21600\[dq] # six hours
git config --global --add credential.helper oauth
.EE
.PP
To unconfigure:
.IP
.EX
git config --global --unset-all credential.helper oauth
.EE
.SH OPTIONS
Run \f[CR]git-credential-oauth -help\f[R] for more details.
.SH REPORTING BUGS
Please report any bugs at
https://github.com/hickford/git-credential-oauth
|