All of lore.kernel.org
 help / color / mirror / Atom feed
From: Neal Kreitzinger <nkreitzinger@gmail.com>
To: "Hillel (Sabba) Markowitz" <sabbahillel@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: Newbie question about setting up git repository from svn (git svn)
Date: Sun, 06 Mar 2011 20:23:37 -0600	[thread overview]
Message-ID: <4D7441A9.7090505@gmail.com> (raw)
In-Reply-To: <AANLkTi=UG4oq4QHhKoDOi9+4bhF1TDy4Z26ORj9Bdcwc@mail.gmail.com>

On 3/4/2011 9:57 AM, Hillel (Sabba) Markowitz wrote:
> Please respond directly to sabbahillel@gmail.com as I do not have time
> to follow this mailing list.
>
It is standard practice on this newsgroup to reply to the sender and cc 
the original cclist along with the newgroup.  Following this newsgroup 
can be challenging when your schedule is busy, but you can learn alot of 
really cool stuff by perusing it regularly.  I try to keep up daily but 
alas I am a few days behind.

> I am attempting to set up a git repository based on an svn repository.
> The idea would be that the members of the project would be able to use
> git exclusively with the central git repository acting as the
> coordinator. This git server would be the only one capable of issuing
> the git svn dcommit and git svn rebase and the members of the project
> would not have to worry about it. Eventually, the subversion
> repository would be transferred to git.
>
I have no experience with git-svn (the svn part, that is), but your plan 
sounds good to me.  Read on to see my comments on the parts I do have 
experience with...

> I created a separate Ubuntu VM in order to set up the git repository.
> I used "git svn clone -s" to set up MyProject.git on "gitserver"
>
> The command "git branch -a" shows
> * master
>    remotes/branch1
>    remotes/branch2
>    remotes/trunk
>
>
> I then went to my main VM and used ssh to clone the repository
>
> git clone gitserver:/opt/git/MyProject
> cd MyProject
> git branch -a
> * master
>    remotes/origin/HEAD ->  origin/master
>    remotes/origin/master
>
> How do I check out the trunk or appropriate branches from the remote?
> I am probably misreading the documentation. Would it be
>
> git checkout -b branch1
>
"git checkout -b branch1" will create a new branch called branch1 based 
on whatever your current HEAD is.  HEAD is the commit that you are 
currently pointing to, ie. the tip of the branch currently checkout out. 
  (see git checkout manpage.)  By "trunk" i take it you mean the 
"master" branch, e.g. "git checkout master".  The asterisk indicates 
above that you are currently on master which is the "trunk" (assuming we 
have the same definition of "trunk").  Therefore, "git checkout -b 
branch1" will create a new branch called "branch1" that has the same 
history as master.  It sounds like you want to checkout "branch1", 
"branch2", and "trunk".  Read on...

> does the master on the remote (and here) actually point to the trunk by default?
> should I checkout the branches on "gitserver"?
>
not being familiar with git-svn, but familiar with "git", I would advise 
you to do the following:
(1) on "gitserver" perform:
(a) git branch branch1 remotes/branch1 (this will create a branch called 
branch1 that tracks remotes/branch1)
(b) git branch branch2 remotes/branch2
(c) git branch trunk remotes/trunk
Now you have the branches master, branch1, branch2, and trunk on 
"gitserver".
(2) I don't know how to push from a git repo to an svn repo so I can't 
tell you if gitserver master points to svn trunk or not.  However, read 
on for what I do know...

> I also do not see how I can get the list of branches from the remote
> location.without having to do an ssh into the gitserver, cd to the
> repository directory, and use a 'branch -a' there. Is there a way to
> ask for this information? I have not yet been successful in setting up
> gitosis yet because this is on an internal company intranet and I do
> not have a valid machine name for my accounts as everything is being
> done on VMs. Thus, my public key ends with
> "sabbahillel@desktop-ubuntu" rather than an actual machine name or
> address.
>
The way you get the list is by doing a git-fetch on MyProject (AFTER you 
create the branches on gitserver).  This will create remote tracking 
branches for all the branches on gitserver.  Notice I said "branches on 
gitserver" and not "remote tracking branches on gitserver".  You can't 
track the remote tracking branches of your remote (at least not sanely). 
  Thats why you had to create tracking branches on gitserver that track 
the remote tracking branches that track the svn repo.  Now that you have 
branches "branch1", "branch2", and "trunk" on gitserver you can track 
them in MyProject.  git-fetch will create remotes/origin/branch1, 
remotes/origin/branch2, remotes/origin/trunk in MyProject.  Now you can 
do "git branch branch1 remotes/origin/branch1" to create the branch1 
branch in MyProject.  "git checkout branch1" in MyRepo will check it 
out.  Repeat for branch2 and trunk.  (I'm not familiar with ssh details, 
but I assume your last ssh comment is made into a non-issue by what I 
just stated above.)

> Would you have a pointer to a HOW-TO that discusses this.
>
I assume these links:

http://git-scm.com/course/svn.html

https://git.wiki.kernel.org/index.php/GitSvnCrashCourse

https://git.wiki.kernel.org/index.php/GitSvnSwitch

https://git.wiki.kernel.org/index.php/SvnMigration

http://utsl.gen.nz/talks/git-svn/intro.html

http://www.tfnico.com/presentations/git-and-subversion

or the git-svn manpage:

http://www.kernel.org/pub/software/scm/git/docs/v1.7.1.4/git-svn.html

will help you. (you need to use the git version of the manual that 
corresponds to your installation.  1.7.1.4 is relevant to me, but 
perhaps not to you.)

> Thanks for any help that you can give me.
>
> --
>         Sabba     -          סבא הלל        -     Hillel
> Hillel (Sabba) Markowitz | Said the fox to the fish, "Join me ashore"
>   SabbaHillel@gmail.com | The fish are the Jews, Torah is our water
> http://sabbahillel.blogspot.com

Despite my ignorance regarding svn and git-svn, I hope my comments will 
be of some help to you or point you in the right direction.

v/r,
Neal

  reply	other threads:[~2011-03-07  2:23 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-04 15:57 Newbie question about setting up git repository from svn (git svn) Hillel (Sabba) Markowitz
2011-03-07  2:23 ` Neal Kreitzinger [this message]
2011-03-07  2:34   ` Neal Kreitzinger
2011-03-07  3:20   ` Hillel (Sabba) Markowitz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4D7441A9.7090505@gmail.com \
    --to=nkreitzinger@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=sabbahillel@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.