English 中文(简体)
subclipse override and commit?
原标题:

using subclipse, how do i commit my older unchanged file over someone else s bodged-up newer version of the file?

i seem to remember there being an override and commit option in older versions, or maybe that was another version control product...

cheers.

最佳回答

This looks like ticket 761, which means that feature may not be available anytime soon, I am afraid.
The "Mark as Merged" is still the way to override changes.

问题回答

using subclipse: in history view: mark all versions you want to get rid of (use ctrl to add select) then right click and revert

then commit and you should have a new version without the unwanted versions

Use subversive. It supports override and commit. I decided to pass from subeclipse to subversive properly due to the lack of this feature.

You could also do it that way:

  • update everything (overwrite your unchanged old version)
  • show history
  • in history pick the version you want to switch back to
  • right click: get content
  • commit




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

热门标签