diff options
author | Pascal Hofmann <mail@pascalhofmann.de> | 2021-07-30 14:48:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-30 14:48:43 +0200 |
commit | 97403a10190e619c299b8f12973663716f54ded0 (patch) | |
tree | 0ae2c8366ee5feecfb326838c6c159747547c230 | |
parent | 4ec1753b4e9324d455d3b55060020ce324e6ced2 (diff) | |
download | go-git-97403a10190e619c299b8f12973663716f54ded0.tar.gz |
_examples: Remove wrong comment
-rw-r--r-- | _examples/clone/auth/ssh/main.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/_examples/clone/auth/ssh/main.go b/_examples/clone/auth/ssh/main.go index 1e06e44..5f21d90 100644 --- a/_examples/clone/auth/ssh/main.go +++ b/_examples/clone/auth/ssh/main.go @@ -32,9 +32,6 @@ func main() { } r, err := git.PlainClone(directory, false, &git.CloneOptions{ - // The intended use of a GitHub personal access token is in replace of your password - // because access tokens can easily be revoked. - // https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/ Auth: publicKeys, URL: url, Progress: os.Stdout, |