* git-svn and logging.. new to git
@ 2008-03-05 9:22 Kenneth P. Turvey
2008-03-05 12:01 ` David Symonds
0 siblings, 1 reply; 5+ messages in thread
From: Kenneth P. Turvey @ 2008-03-05 9:22 UTC (permalink / raw)
To: git
I'm in the process of moving to git from subversion and I've run into
something I just don't understand. I've moved one project from subversion
using git-svnimport and that went successfully. Unfortunately the latest
git doesn't include svnimport so I'm trying to do the same thing with
git-svn. It seems to have worked without any problem, but when I do "git
log" I don't see all the entries I see when I do "svn log" on the same
project in subversion. So, now I have to ask myself, "have I lost changes
in the import?"
The command I used to import the source code is:
git-svn clone file:///home/kt/oldsvn/Personal/Projects/Journal \
--trunk=trunk --branches=branches --tags=tags
Am I doing something wrong here? Do I need additional options on the
git-log command?
Any explanation or assistance would be greatly appreciated.
Thanks.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: git-svn and logging.. new to git
2008-03-05 9:22 git-svn and logging.. new to git Kenneth P. Turvey
@ 2008-03-05 12:01 ` David Symonds
2008-03-05 16:03 ` Kenneth P. Turvey
0 siblings, 1 reply; 5+ messages in thread
From: David Symonds @ 2008-03-05 12:01 UTC (permalink / raw)
To: Kenneth P. Turvey; +Cc: git
On Wed, Mar 5, 2008 at 8:22 PM, Kenneth P. Turvey
<kt-usenet@squeakydolphin.com> wrote:
> I'm in the process of moving to git from subversion and I've run into
> something I just don't understand. I've moved one project from subversion
> using git-svnimport and that went successfully. Unfortunately the latest
> git doesn't include svnimport so I'm trying to do the same thing with
> git-svn. It seems to have worked without any problem, but when I do "git
> log" I don't see all the entries I see when I do "svn log" on the same
> project in subversion. So, now I have to ask myself, "have I lost changes
> in the import?"
>
> The command I used to import the source code is:
>
> git-svn clone file:///home/kt/oldsvn/Personal/Projects/Journal \
> --trunk=trunk --branches=branches --tags=tags
git-svn creates a whole bunch of remote branches -- does "git branch
-a" show them up?
Also, you can probably leave out the --trunk, etc., and just use --stdlayout.
Dave.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: git-svn and logging.. new to git
2008-03-05 12:01 ` David Symonds
@ 2008-03-05 16:03 ` Kenneth P. Turvey
2008-03-05 20:37 ` David Symonds
0 siblings, 1 reply; 5+ messages in thread
From: Kenneth P. Turvey @ 2008-03-05 16:03 UTC (permalink / raw)
To: git
On Wed, 05 Mar 2008 23:01:34 +1100, David Symonds wrote:
> git-svn creates a whole bunch of remote branches -- does "git branch
> -a" show them up?
>
> Also, you can probably leave out the --trunk, etc., and just use
> --stdlayout.
Thanks. That's good information to have. Is there a way to just do a
straight import like in svnimport? Is svnimport still available
somewhere or has it been completely superseded by git-svn?
--
Kenneth P. Turvey <kt-usenet@squeakydolphin.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: git-svn and logging.. new to git
2008-03-05 16:03 ` Kenneth P. Turvey
@ 2008-03-05 20:37 ` David Symonds
2008-03-05 21:02 ` Jakub Narebski
0 siblings, 1 reply; 5+ messages in thread
From: David Symonds @ 2008-03-05 20:37 UTC (permalink / raw)
To: Kenneth P. Turvey; +Cc: git
On Thu, Mar 6, 2008 at 3:03 AM, Kenneth P. Turvey
<kt-usenet@squeakydolphin.com> wrote:
> On Wed, 05 Mar 2008 23:01:34 +1100, David Symonds wrote:
>
>
> > git-svn creates a whole bunch of remote branches -- does "git branch
> > -a" show them up?
> >
> > Also, you can probably leave out the --trunk, etc., and just use
> > --stdlayout.
>
>
>
> Thanks. That's good information to have. Is there a way to just do a
> straight import like in svnimport? Is svnimport still available
> somewhere or has it been completely superseded by git-svn?
I believe git-svn completely replaces svnimport. Check the git-svn
manpage, which is quite extensive.
Dave.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: git-svn and logging.. new to git
2008-03-05 20:37 ` David Symonds
@ 2008-03-05 21:02 ` Jakub Narebski
0 siblings, 0 replies; 5+ messages in thread
From: Jakub Narebski @ 2008-03-05 21:02 UTC (permalink / raw)
To: David Symonds; +Cc: Kenneth P. Turvey, git
"David Symonds" <dsymonds@gmail.com> writes:
> On Thu, Mar 6, 2008 at 3:03 AM, Kenneth P. Turvey
> <kt-usenet@squeakydolphin.com> wrote:
> > On Wed, 05 Mar 2008 23:01:34 +1100, David Symonds wrote:
> >
> >
> > > git-svn creates a whole bunch of remote branches -- does "git branch
> > > -a" show them up?
> > >
> > > Also, you can probably leave out the --trunk, etc., and just use
> > > --stdlayout.
> >
> >
> >
> > Thanks. That's good information to have. Is there a way to just do a
> > straight import like in svnimport? Is svnimport still available
> > somewhere or has it been completely superseded by git-svn?
>
> I believe git-svn completely replaces svnimport. Check the git-svn
> manpage, which is quite extensive.
You can find git-svnimport in contrib/examples/.
git-svn has more features, and git-svnimport is no longer maintaned.
--
Jakub Narebski
Poland
ShadeHawk on #git
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-03-05 21:03 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-05 9:22 git-svn and logging.. new to git Kenneth P. Turvey
2008-03-05 12:01 ` David Symonds
2008-03-05 16:03 ` Kenneth P. Turvey
2008-03-05 20:37 ` David Symonds
2008-03-05 21:02 ` Jakub Narebski
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).