aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaulo Gomes <pjbgf@linux.com>2023-07-01 23:16:04 +0100
committerGitHub <noreply@github.com>2023-07-01 23:16:04 +0100
commit4e1b9c8c558bceef1c773022c94afd4d746b7b81 (patch)
tree98a56800c9b4c21093562878a5c1120cbf1ffb99
parent1574937058a9c2ce9b35b9d44ecb4918f0a2e908 (diff)
parent97403a10190e619c299b8f12973663716f54ded0 (diff)
downloadgo-git-4e1b9c8c558bceef1c773022c94afd4d746b7b81.tar.gz
Merge pull request #357 from pascal-hofmann/patch-1
_examples: Remove wrong comment
-rw-r--r--_examples/clone/auth/ssh/main.go3
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,