English 中文(简体)
Unable to install Git-core+svn by MacPorts
原标题:

I am trying to install git-svn on mac os x 10.5 using the following command,

sudo port install git-core +svn

It installation is successful but i can find the git-svn command anywhere,

~/ $ sudo port installed git-*
The following ports are currently installed:
  git-core @1.6.5.2_0+doc+svn (active)

Installed shows it installed with correct options.

最佳回答

It looks like the +svn variant is installed. git-svn will be at /opt/local/libexec/git-core/git-svn, but you should call it from the command line as git svn -- git itself will know where to find its associated binaries.

git is installed at /opt/local/bin. Make sure /opt/local/bin is in your $PATH.

问题回答

暂无回答




相关问题
Best practices for Subversion and Visual Studio projects

I ve recently started working on various C# projects in Visual Studio as part of a plan for a large scale system that will be used to replace our current system that s built from a cobbling-together ...

Changing username in SVN+SSH URI on the fly in working copy

I am using SVN+SSH to check out a working copy of repository from an SVN server on which all developers are members of a developer group and have full read/write permissions on the repository ...

ASP.NET MVC: How should it work with subversion?

So, I have an asp.net mvc app that is being worked on by multiple developers in differing capacities. This is our first time working on a mvc app and my first time working with .NET. Our app does not ...

How to search for file in subversion server?

Is there a way to search for a file in a subversion repository? Something similar to Unix find command, with which I can find the location of a file in a repository. I know there is svn list, but ...

热门标签