Re: Like commit -a, but...

2012-11-05 Thread Andreas Schwab
Andreas Krey writes: > But is there a direct way to convert the current working tree into a > tree object? You can create a temporary index by setting the GIT_INDEX_FILE env var. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8

Re: Like commit -a, but...

2012-11-05 Thread Tomas Carnecky
On Mon, 05 Nov 2012 21:56:28 +0100, Andreas Krey wrote: > On Mon, 05 Nov 2012 21:29:48 +, Andreas Krey wrote: > ... > > But still I'd like to know if there is a cleaner solution, > > esp. with respect to the index. > > Actually, it seems > > commit -m 'index' > commit -a -m 'worktree' > .

Like commit -a, but...

2012-11-05 Thread Andreas Krey
Hi all, I have a workflow for which I can't quite find the git tooling. Essentially what I want is like 'git commit -a', except that I want the resulting commit on a branch I name instead of the current one, and I want my current index not being modified. At the moment I emulate that via git c

Re: Like commit -a, but...

2012-11-05 Thread Andreas Krey
On Mon, 05 Nov 2012 21:29:48 +, Andreas Krey wrote: ... > But still I'd like to know if there is a cleaner solution, > esp. with respect to the index. Actually, it seems commit -m 'index' commit -a -m 'worktree' ...push git reset HEAD^ git reset --soft HEAD^ might do the index trick. B