[git-users] Re: Moving commits from one branch to another (or: My hassles with git-rebase)

2013-01-23 Thread Stefan Schulze
Hi, just for the records: John Keeping at g...@vger.kernel.org finally gave me the commands I was looking for: > git rebase --onto svn pushedToSvn master^0 assembles the complete (pushedToSvn..master onto the commits at the svn-branch) history detached and > git checkout -B svn HEAD moved this

Re: [git-users] Storing extra files for release versions.

2013-01-23 Thread Dale R. Worley
> From: Rahul Gupta > > This is probably a hangover from SVN habits but still I would like the Git > way doing this. > > Normally using SVN, when I work on a latex file, I store the pdf generated > in my Tag folder along with latex file. There is no concept of Tag folder > in Git and while I

Re: [git-users] Storing extra files for release versions.

2013-01-23 Thread Dale R. Worley
> From: wor...@alum.mit.edu (Dale R. Worley) > > I think you could get a similar effect by doing something like this: > [...] > > This leaves you with a tagged commit that is not on a branch and > contains the derived files, whose parent is the commit containing > exactly the source files. You m