summaryrefslogtreecommitdiffstats
path: root/git-bundle.html
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2009-02-09 18:05:49 +0000
committerJunio C Hamano <junio@hera.kernel.org>2009-02-09 18:05:49 +0000
commit61169124a250790e1310b11635d25e7e25253f9b (patch)
tree193c1f55de9eafcad5daf9153869efa90975b59a /git-bundle.html
parente5bf6c1297898d9fd6102bdf7e5cc637b1bbdbb8 (diff)
downloadgit-htmldocs-61169124a250790e1310b11635d25e7e25253f9b.tar.gz
Autogenerated HTML docs for v1.6.2-rc0-10-gf6b9
Diffstat (limited to 'git-bundle.html')
-rw-r--r--git-bundle.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/git-bundle.html b/git-bundle.html
index 3d1fac4f6..972f44f53 100644
--- a/git-bundle.html
+++ b/git-bundle.html
@@ -445,16 +445,16 @@ incremental bundle,</p></div>
<div class="listingblock">
<div class="content">
<pre><tt>machineA$ cd R1
-machineA$ git bundle create file.bdl master
+machineA$ git bundle create file.bundle master
machineA$ git tag -f lastR2bundle master</tt></pre>
</div></div>
-<div class="para"><p>Then you sneakernet file.bdl to the target machine B. Because you don't
+<div class="para"><p>Then you sneakernet file.bundle to the target machine B. Because you don't
have to have any object to extract objects from such a bundle, not only
you can fetch/pull from a bundle, you can clone from it as if it was a
remote repository.</p></div>
<div class="listingblock">
<div class="content">
-<pre><tt>machineB$ git clone /home/me/tmp/file.bdl R2</tt></pre>
+<pre><tt>machineB$ git clone /home/me/tmp/file.bundle R2</tt></pre>
</div></div>
<div class="para"><p>This will define a remote called "origin" in the resulting repository that
lets you fetch and pull from the bundle. $GIT_DIR/config file in R2 may
@@ -462,21 +462,21 @@ have an entry like this:</p></div>
<div class="listingblock">
<div class="content">
<pre><tt>[remote "origin"]
- url = /home/me/tmp/file.bdl
+ url = /home/me/tmp/file.bundle
fetch = refs/heads/*:refs/remotes/origin/*</tt></pre>
</div></div>
<div class="para"><p>You can fetch/pull to update the resulting mine.git repository after
-replacing the bundle you store at /home/me/tmp/file.bdl with incremental
+replacing the bundle you store at /home/me/tmp/file.bundle with incremental
updates from here on.</p></div>
<div class="para"><p>After working more in the original repository, you can create an
incremental bundle to update the other:</p></div>
<div class="listingblock">
<div class="content">
<pre><tt>machineA$ cd R1
-machineA$ git bundle create file.bdl lastR2bundle..master
+machineA$ git bundle create file.bundle lastR2bundle..master
machineA$ git tag -f lastR2bundle master</tt></pre>
</div></div>
-<div class="para"><p>and sneakernet it to the other machine to replace /home/me/tmp/file.bdl,
+<div class="para"><p>and sneakernet it to the other machine to replace /home/me/tmp/file.bundle,
and pull from it.</p></div>
<div class="listingblock">
<div class="content">
@@ -535,7 +535,7 @@ refs, like this example, when fetching:</p></div>
</div>
<div id="footer">
<div id="footer-text">
-Last updated 2009-02-05 01:26:14 UTC
+Last updated 2009-02-09 18:05:36 UTC
</div>
</div>
</body>