git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH] Add "clone" support to lntree
@ 2005-04-16  1:56 Daniel Barkalow
  2005-04-16  2:47 ` Petr Baudis
  0 siblings, 1 reply; 29+ messages in thread
From: Daniel Barkalow @ 2005-04-16  1:56 UTC (permalink / raw)
  To: Petr Baudis; +Cc: git

I often want to take a base tree, which I keep tracking some remote head,
and make a local working tree that starts from it. This makes "git ln -c
<dest>" give you a tree that you can just start working in and then diff
against the head you'd started from and send off.

Signed-Off-By: Daniel Barkalow <barkalow@iabervon.org>

Index: gitlntree.sh
===================================================================
--- b068d3ec7c00cfe4a1f14a898f61c4807cd5bc8b/gitlntree.sh  (mode:100755 sha1:17c4966ea64aeced96ae4f1b00f3775c1904b0f1)
+++ 0877e1b9b70a4305959b7f65ace4044e4ae0afdb/gitlntree.sh  (mode:100755 sha1:84cbf0492996f1139b992147b4f53bc14342e3f2)
@@ -7,11 +7,14 @@
 # same objects database as the current one. It also shares the
 # branches and tags information.
 #
-# The new directory is completely pristine - there's not even
-# a directory cache there yet.
-#
 # Takes the new directory name.
 
+if [ "$1" = "-c" ]
+then
+    clone=yes
+    shift 1
+fi
+
 destdir=$1
 
 die () {
@@ -32,3 +35,12 @@
 ln -s $srcdir/.git/objects $dgitdir/objects
 ln -s $srcdir/.git/remotes $dgitdir/remotes
 ln -s $srcdir/.git/tags $dgitdir/tags
+
+if [ "$clone" != "" ]
+then
+    cp $srcdir/.git/HEAD $dgitdir/HEAD
+    cd $destdir
+    read-tree $(tree-id)
+    checkout-cache -a
+    update-cache --refresh
+fi


^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2005-04-20 23:55 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-04-16  1:56 [PATCH] Add "clone" support to lntree Daniel Barkalow
2005-04-16  2:47 ` Petr Baudis
2005-04-16  2:58   ` Petr Baudis
2005-04-16  3:16     ` Linus Torvalds
2005-04-16 11:39       ` Petr Baudis
2005-04-16  3:17     ` Daniel Barkalow
2005-04-16 23:33       ` Petr Baudis
2005-04-17  0:07         ` Daniel Barkalow
2005-04-19  1:12           ` Petr Baudis
2005-04-19  2:13             ` Change "pull" to _only_ download, and "git update"=pull+merge? David A. Wheeler
2005-04-19  9:18               ` David Greaves
2005-04-19  9:28                 ` Petr Baudis
2005-04-19 10:05                   ` Martin Schlemmer
2005-04-19 10:50                     ` Petr Baudis
2005-04-19 13:54                       ` Jon Seymour
2005-04-19 14:40                       ` Martin Schlemmer
2005-04-19 18:28                       ` Daniel Barkalow
2005-04-19 22:39                         ` David A. Wheeler
2005-04-19 23:20                           ` Daniel Barkalow
2005-04-20  7:01                       ` Ingo Molnar
2005-04-20 20:05                         ` Petr Baudis
2005-04-20 20:32                           ` Ingo Molnar
2005-04-20 20:45                           ` Ingo Molnar
2005-04-20 21:15                             ` Petr Baudis
2005-04-20 23:58                               ` David Mansfield
2005-04-16  3:06   ` Add "clone" support to lntree Daniel Barkalow
2005-04-16 23:00     ` Petr Baudis
2005-04-16 23:07       ` Daniel Barkalow
2005-04-16 23:44         ` Petr Baudis

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).