From d221635ffc7a05a502fec29c35024eb8e47ad654 Mon Sep 17 00:00:00 2001 From: David Mazza Date: Wed, 21 May 2014 21:48:18 -0400 Subject: [PATCH] Added ':' after the Personal Access Token in Github URL When you use a Personal Access Token, a blank password is required interactively. This puts the blank password in the URL instead. --- .../authentication-and-authorisation/index.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/getting-started/authentication-and-authorisation/index.markdown b/documentation/getting-started/authentication-and-authorisation/index.markdown index c1b9ca30..d57232b5 100644 --- a/documentation/getting-started/authentication-and-authorisation/index.markdown +++ b/documentation/getting-started/authentication-and-authorisation/index.markdown @@ -286,12 +286,12 @@ Tokens](https://github.com/blog/1509-personal-api-tokens) which allow you to do something like this: {% highlight bash %} - me@localhost $ git ls-remote https://.....................@github.com/capistrano/rails3-bootstrap-devise-cancan.git + me@localhost $ git ls-remote https://XXXX:@github.com/capistrano/rails3-bootstrap-devise-cancan.git 3419812c9f146d9a84b44bcc2c3caef94da54758HEAD 3419812c9f146d9a84b44bcc2c3caef94da54758HEADrefs/heads/master {% endhighlight %} -Where `....` is a personal API token, as such: +Where `XXXX` is a personal API token, as such: ![Github Personal API Token Page](/images/github-personal-api-token-page.png)