git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* need help stripping a repo to one file
@ 2008-10-19 10:27 Caleb Cushing
  2008-10-20 11:53 ` Baz
  0 siblings, 1 reply; 2+ messages in thread
From: Caleb Cushing @ 2008-10-19 10:27 UTC (permalink / raw)
  To: git

here's what I've done so far (note: this is a public repo if anyone
wants to take a look)

git clone git@github.com:xenoterracide/dot_usr.git sql_iabbr
cd sql_iabbr/
git checkout db3c5ffb180f10dde8e539a81a6644760e098dcd
git branch -D master
git checkout -b master
git filter-branch --subdirectory-filter  vim/ftplugin/ -- --all


that leaves me with this
html  sgml  sh  tex  vim  xhtml  xml  sql_iabbr.vim  xml.vim

all I want left is sql_iabbr.vim and it's history

I've used stuff like
git filter-branch --tree-filter 'rm -rf xml.vim' HEAD

to remove the files... but I notice that leaves the logs.

I'm thinking I could do that and then remove those commits but I
haven't figured out how to remove the commits, and even then I'm not
sure the repo would be in the state I want.

can anyone help me get to where I want to be? also is there an easier
way to do what I've done so far?
-- 
Caleb Cushing

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

* Re: need help stripping a repo to one file
  2008-10-19 10:27 need help stripping a repo to one file Caleb Cushing
@ 2008-10-20 11:53 ` Baz
  0 siblings, 0 replies; 2+ messages in thread
From: Baz @ 2008-10-20 11:53 UTC (permalink / raw)
  To: Caleb Cushing; +Cc: git

2008/10/19 Caleb Cushing <xenoterracide@gmail.com>:
> here's what I've done so far (note: this is a public repo if anyone
> wants to take a look)
>
> git clone git@github.com:xenoterracide/dot_usr.git sql_iabbr
> cd sql_iabbr/
> git checkout db3c5ffb180f10dde8e539a81a6644760e098dcd
> git branch -D master
> git checkout -b master
> git filter-branch --subdirectory-filter  vim/ftplugin/ -- --all
>
>
> that leaves me with this
> html  sgml  sh  tex  vim  xhtml  xml  sql_iabbr.vim  xml.vim
>
> all I want left is sql_iabbr.vim and it's history

So you just want the history for a single file?

 git log -p --reverse --pretty=email -- sql_iabbr.vim

That outputs a patch history for sql_iabbr.vim in mbox format, you can
import that into an empty repo with git-am.

(I had a look at the project, the history is simple with no merges
etc, so nothing like --first-parent is needed)

Cheers,
Baz

>
> I've used stuff like
> git filter-branch --tree-filter 'rm -rf xml.vim' HEAD
>
> to remove the files... but I notice that leaves the logs.
>
> I'm thinking I could do that and then remove those commits but I
> haven't figured out how to remove the commits, and even then I'm not
> sure the repo would be in the state I want.
>
> can anyone help me get to where I want to be? also is there an easier
> way to do what I've done so far?
> --
> Caleb Cushing
> --
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

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

end of thread, other threads:[~2008-10-20 11:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-19 10:27 need help stripping a repo to one file Caleb Cushing
2008-10-20 11:53 ` Baz

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).