summaryrefslogtreecommitdiffstats
path: root/git-credential-store.html
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-01-17 14:46:49 -0800
committerJunio C Hamano <gitster@pobox.com>2014-01-17 14:46:49 -0800
commit61525f915b47e953b4288a9afcee45e47b352214 (patch)
treef0649f89cc7a77c0296305f4673fc2bc7e0a6d54 /git-credential-store.html
parentbc8d4783cac3c942fc9e8cf2f3eae4aea8cab5cb (diff)
downloadgit-htmldocs-61525f915b47e953b4288a9afcee45e47b352214.tar.gz
Autogenerated HTML docs for v1.9-rc0
Diffstat (limited to 'git-credential-store.html')
-rw-r--r--git-credential-store.html48
1 files changed, 26 insertions, 22 deletions
diff --git a/git-credential-store.html b/git-credential-store.html
index d959034cc..8e7cefa65 100644
--- a/git-credential-store.html
+++ b/git-credential-store.html
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
-<meta name="generator" content="AsciiDoc 8.6.8" />
+<meta name="generator" content="AsciiDoc 8.6.6" />
<title>git-credential-store(1)</title>
<style type="text/css">
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
@@ -87,15 +87,11 @@ ul, ol, li > p {
ul > li { color: #aaa; }
ul > li > * { color: black; }
-.monospaced, code, pre {
- font-family: "Courier New", Courier, monospace;
- font-size: inherit;
- color: navy;
+pre {
padding: 0;
margin: 0;
}
-
#author {
color: #527bbd;
font-weight: bold;
@@ -353,7 +349,7 @@ div.colist td img {
margin-bottom: 0.1em;
}
-div.toclevel0, div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
+div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
margin-top: 0;
margin-bottom: 0;
}
@@ -411,14 +407,18 @@ span.underline { text-decoration: underline; }
span.overline { text-decoration: overline; }
span.line-through { text-decoration: line-through; }
-div.unbreakable { page-break-inside: avoid; }
-
/*
* xhtml11 specific
*
* */
+tt {
+ font-family: monospace;
+ font-size: inherit;
+ color: navy;
+}
+
div.tableblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
@@ -452,6 +452,12 @@ div.tableblock > table[frame="vsides"] {
*
* */
+.monospaced {
+ font-family: monospace;
+ font-size: inherit;
+ color: navy;
+}
+
table.tableblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
@@ -531,8 +537,6 @@ body.manpage div.sectionbody {
@media print {
body.manpage div#toc { display: none; }
}
-
-
</style>
<script type="text/javascript">
/*<![CDATA[*/
@@ -577,7 +581,7 @@ toc: function (toclevels) {
function tocEntries(el, toclevels) {
var result = new Array;
- var re = new RegExp('[hH]([1-'+(toclevels+1)+'])');
+ var re = new RegExp('[hH]([2-'+(toclevels+1)+'])');
// Function that scans the DOM tree for header elements (the DOM2
// nodeIterator API would be a better technique but not supported by all
// browsers).
@@ -606,7 +610,7 @@ toc: function (toclevels) {
var i;
for (i = 0; i < toc.childNodes.length; i++) {
var entry = toc.childNodes[i];
- if (entry.nodeName.toLowerCase() == 'div'
+ if (entry.nodeName == 'div'
&& entry.getAttribute("class")
&& entry.getAttribute("class").match(/^toclevel/))
tocEntriesToRemove.push(entry);
@@ -652,7 +656,7 @@ footnotes: function () {
var entriesToRemove = [];
for (i = 0; i < noteholder.childNodes.length; i++) {
var entry = noteholder.childNodes[i];
- if (entry.nodeName.toLowerCase() == 'div' && entry.getAttribute("class") == "footnote")
+ if (entry.nodeName == 'div' && entry.getAttribute("class") == "footnote")
entriesToRemove.push(entry);
}
for (i = 0; i < entriesToRemove.length; i++) {
@@ -747,7 +751,7 @@ git-credential-store(1) Manual Page
<div class="sectionbody">
<div class="listingblock">
<div class="content">
-<pre><code>git config credential.helper 'store [options]'</code></pre>
+<pre><tt>git config credential.helper 'store [options]'</tt></pre>
</div></div>
</div>
</div>
@@ -769,7 +773,7 @@ that integrates with secure storage provided by your operating system.</td>
Git programs.</p></div>
<div class="paragraph"><p>You probably don&#8217;t want to invoke this command directly; it is meant to
be used as a credential helper by other parts of git. See
-<a href="gitcredentials.html">gitcredentials(7)</a> or <code>EXAMPLES</code> below.</p></div>
+<a href="gitcredentials.html">gitcredentials(7)</a> or <tt>EXAMPLES</tt> below.</p></div>
</div>
</div>
<div class="sect1">
@@ -781,10 +785,10 @@ be used as a credential helper by other parts of git. See
</dt>
<dd>
<p>
- Use <code>&lt;path&gt;</code> to store credentials. The file will have its
+ Use <tt>&lt;path&gt;</tt> to store credentials. The file will have its
filesystem permissions set to prevent other users on the system
from reading it, but will not be encrypted or otherwise
- protected. Defaults to <code>~/.git-credentials</code>.
+ protected. Defaults to <tt>~/.git-credentials</tt>.
</p>
</dd>
</dl></div>
@@ -797,25 +801,25 @@ be used as a credential helper by other parts of git. See
your username or password. For example:</p></div>
<div class="listingblock">
<div class="content">
-<pre><code>$ git config credential.helper store
+<pre><tt>$ git config credential.helper store
$ git push http://example.com/repo.git
Username: &lt;type your username&gt;
Password: &lt;type your password&gt;
[several days later]
$ git push http://example.com/repo.git
-[your credentials are used automatically]</code></pre>
+[your credentials are used automatically]</tt></pre>
</div></div>
</div>
</div>
<div class="sect1">
<h2 id="_storage_format">STORAGE FORMAT</h2>
<div class="sectionbody">
-<div class="paragraph"><p>The <code>.git-credentials</code> file is stored in plaintext. Each credential is
+<div class="paragraph"><p>The <tt>.git-credentials</tt> file is stored in plaintext. Each credential is
stored on its own line as a URL like:</p></div>
<div class="listingblock">
<div class="content">
-<pre><code>https://user:pass@example.com</code></pre>
+<pre><tt>https://user:pass@example.com</tt></pre>
</div></div>
<div class="paragraph"><p>When Git needs authentication for a particular URL context,
credential-store will consider that context a pattern to match against