git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Using local trees and cogito
@ 2005-06-16  2:37 Jon Smirl
  2005-06-16 16:39 ` Jan Harkes
  0 siblings, 1 reply; 3+ messages in thread
From: Jon Smirl @ 2005-06-16  2:37 UTC (permalink / raw)
  To: git

[-- Attachment #1: Type: text/plain, Size: 1474 bytes --]

I took Jeff Garzik's scripts for managing multiple trees and reworked
them a little for cogito. I changed the names to something that makes
more sense to me, but what does everyone think? Or can cogito already
do this I just can't figure it out?

In my terminology forks are different tree heads in the same git tree
(local branches).

cg-fork fname -- make a new tree head from the current tree and switch to it.
cg-goto fname -- switch the current working tree to one of the forks.
cg-goto -- display the name of the current fork
cg-goto -l -- display the name of all forks
cg-diff fname -- diff the current working tree to a fork
cg-merge fname -- merge another fork into the current fork

I fixed goto to not jump if there are pending changes. Is there a
better way to do this?

Is fork a good name since branches refer to other git trees? I'm
somewhat confused about exactly what a branch consists of, it looks to
me like the path to another external tree.

I do find Jeff's work very useful since it allows me to keep twenty
patches in a single tree and jump between them. This is better than bk
where I had to keep multiple entire trees with a build in each of
them. This way I only rebuild the files that changed after a jump.

One problem I did notice is that if you add file in a fork and jump to
a fork without the file, it doesn't get removed. That's not a big
problem but it can be confusing.

-- 
Jon Smirl
jonsmirl@gmail.com

[-- Attachment #2: cg-fork --]
[-- Type: application/octet-stream, Size: 251 bytes --]

#!/bin/sh

if [ ! -d .git/refs/heads ]
then
	echo Cannot find .git metadata, aborting.
	exit 1
fi

FN=".git/refs/heads/$1"

if [ -f $FN ]
then
	echo Branch $1 exists, moving to $1.old.
	mv -f $FN $FN.old
fi

cp .git/refs/heads/master $FN

cg-goto $1


[-- Attachment #3: cg-goto --]
[-- Type: application/octet-stream, Size: 421 bytes --]

#!/bin/sh

if [ "$1" == "-l" ]
then
	ls .git/refs/heads
elif [ "x$1" != "x" ]
then
	if [ ! -f .git/refs/heads/$1 ]
	then
		echo Branch $1 not found.
		exit 1
	fi
	diff=$(git-diff-cache -r -p HEAD)
	if [ "x$diff" != "x" ]
	then
		echo "Commit pending changes first"
		exit 1
	fi
	( cd .git && rm -f HEAD && ln -s refs/heads/$1 HEAD )

	git-read-tree -m HEAD && git-checkout-cache -q -f -u -a
else
	readlink .git/HEAD
fi



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

* Re: Using local trees and cogito
  2005-06-16  2:37 Using local trees and cogito Jon Smirl
@ 2005-06-16 16:39 ` Jan Harkes
  2005-06-17 11:57   ` Matthias Urlichs
  0 siblings, 1 reply; 3+ messages in thread
From: Jan Harkes @ 2005-06-16 16:39 UTC (permalink / raw)
  To: git

On Wed, Jun 15, 2005 at 10:37:59PM -0400, Jon Smirl wrote:
> One problem I did notice is that if you add file in a fork and jump to
> a fork without the file, it doesn't get removed. That's not a big
> problem but it can be confusing.

I noticed the same thing and 'solved' it the following way,

After pointing the head at the new branch, instead of using,

    git-read-tree -m HEAD && checkout-cache -q -f -u -a

I use,

    git-diff-cache -R -p HEAD | git-apply --index

This simple reverse applies the differences between the previously
checked out tree and the branch we just switched to. Ofcourse the
cache/index has to be up to date before we switch between branches.

Jan

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

* Re: Using local trees and cogito
  2005-06-16 16:39 ` Jan Harkes
@ 2005-06-17 11:57   ` Matthias Urlichs
  0 siblings, 0 replies; 3+ messages in thread
From: Matthias Urlichs @ 2005-06-17 11:57 UTC (permalink / raw)
  To: git

Hi, Jan Harkes wrote:

> I use,
> 
>     git-diff-cache -R -p HEAD | git-apply --index
> 
> This simple reverse applies the differences between the previously
> checked out tree and the branch we just switched to. Ofcourse the
> cache/index has to be up to date before we switch between branches.

... except that this method fails to create intermediate dirctories.

fatal: unable to create file drivers/media/dvb/dibusb/Kconfig (No such file or directory)

Looks like a bug in git-apply.

-- 
Matthias Urlichs   |   {M:U} IT Design @ m-u-it.de   |  smurf@smurf.noris.de
Disclaimer: The quote was selected randomly. Really. | http://smurf.noris.de
 - -
Let us endeavor so to live that when we come to die even the undertaker will be
sorry.
		-- Mark Twain, "Pudd'nhead Wilson's Calendar"



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

end of thread, other threads:[~2005-06-17 11:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-06-16  2:37 Using local trees and cogito Jon Smirl
2005-06-16 16:39 ` Jan Harkes
2005-06-17 11:57   ` Matthias Urlichs

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 NNTP newsgroup(s).