Re: git svn info --url lacks username

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Thu, May 12, 2011 at 14:13, Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> wrote:
> I'm using git-svn. Due to local policies and for compatibility with the other
> developers using plain svn, I have to lock a file before committing anything to
> the svn repository.
>
> Hence I wrote a small wrapper script around "git svn dcommit", which basically
> does:
>
> | SVNROOT=$( ( cd ./$(git rev-parse --show-cdup) && git svn info --url ) )
> | SVNLOCKFILE=$SVNROOT/lockfile
> |
> | svn lock $SVNLOCKFILE
> | git svn dcommit $*
> | svn unlock $SVNLOCKFILE

[...]

> My .git/config has
>
> | [svn-remote "svn"]
> | Â Â Â Â url = svn+ssh://user@server/project
>
> But "git svn info --url" only prints:
>
> | svn+ssh://server/project/sub/branches/branch
>
> i.e. the username part is missing.
> Obviously "git svn dcommit" does use the correct URL.

[...]

> I tried, "git config --get svn-remote.svn.url", but that only gives me
> "svn+ssh://user@server/project", i.e. it lacks the "/sub/branches/branch" part.
>
> Do you have any idea what's going on, or how to fix it?
> Shouldn't "git svn info --url" include the username?

I ended up adding:

| SVNURL=$(git config --get svn-remote.svn.url)
| case $SVNURL in svn+ssh://*@*)
|         SVNROOT=${SVNURL%%@*}@${SVNROOT#svn+ssh://}
|         ;;
| esac

so it hacks in the username from the config file.
But I don't think that's the ideal solution?

Gr{oetje,eeting}s,

            Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@xxxxxxxxxxxxxx

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
             Â Â -- Linus Torvalds
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]