English 中文(简体)
svn: 只是试图在我的当地工作复印件中制造和删除一个夹。
原标题:svn: just trying to create and remove a folder in my local working copy
  • 时间:2011-01-26 21:03:39
  •  标签:
  • svn

我正试图在我的当地工作复印件中制造和删除一个文件。

以下是我采取的步骤:

$ mkdir jander
$ svn add jander
A         jander
$ svn rm jander
svn: Use --force to override this restriction
svn:  jander  has local modifications

你们可以看到,我收到关于“使用——武力......”的信息,因此,我是否做过错? 创建和删除一个夹子的正确方式是什么?

关于

Javi

最佳回答

既然你已经承诺,这支手仍然有地方上的改动,因而有错误。 攻击,然后是护堤,然后是护堤,你应该好。

问题回答

In your case You have not committed that folder. And want to rm this recently added folder then you can remove it by using

svn revert jander
rm jander




相关问题
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 ...

热门标签