I am using Eclipse Version: 3.3.2
I have imported a project which is on already on SVN repository. I just checked out in wwwroot and then imported into eclipse. Done some changes. Then i was thinking to install subclipse.
opened eclipse plugin manager installed Subclipse 1.2.4.
Then right clicked on project ->Team -> Share Project -> selected SVN. It shows an error :
org.tigris.subversion.javahl.ClientException:
Unsupported working copy format svn:
This client is too old to work with
working copy
'C:\Inetpub\wwwroot\project'; please
get a newer Subversion client
Is there any problem with Subclipse? Is it effect SVN repository or my changes?
Should i proceed further?
There are several versions of svn, and therefore, several versions of subclipse (and of subversive). If you don't checkout your project with subclipse but with another svn client, you will possibly have problems if the versions differ. If you have made some changes, commit them with the client you svn coed your project with, and then
either you install the matching subclipse (or subversive) version
either you delete your project and check it out again, but with subclipse (using new Project> checkout from SVN)
Related
I have a Yii 1.x project, and i use Netbeans 8.0.2. In this website there is an admin folder in web folder. This is one netbeans project but 2 yii project with one framework (one for users, one for admins). When i am in the web folder the auto complete works, however it doesn't work in web/admin folder.
I tried everything:
-Delete cache manually - C:\Users\username\AppData\Local\NetBeans\Cache\8.0.2
-Reinstall Netbeans
-Delete the project without source code, after create a new project.
-Code completion on. (tools->option->editor->codecompletion)
-Updates
Here is my "about":
Product Version: NetBeans IDE 8.0.2 (Build 201411181905)
Updates: NetBeans IDE is updated to version NetBeans 8.0.2 Patch 2
Java: 1.8.0_11; Java HotSpot(TM) 64-Bit Server VM 25.11-b03
Runtime: Java(TM) SE Runtime Environment 1.8.0_11-b12
System: Windows 7 version 6.1 running on amd64; Cp1250; hu_HU (nb)
User directory: C:\Users\Siki\AppData\Roaming\NetBeans\8.0.2
Cache directory: C:\Users\Siki\AppData\Local\NetBeans\Cache\8.0.2
So can i enable auto complete?
Since you are using Yii 1.x, there is a certified NetBeans plugin for Yii 1.x in its plugin repository. This plugin will provide options like
Creating new Yii project from netbeans. No need to use Terminals
Code completion.
Go to a Class file by clicking on accessible snippets.
Plug this in you NetBeans to get above benefits as well as to overcome auto code complication problem, which you mentioned in your post.
Plugin page # http://plugins.netbeans.org/plugin/47246/php-yii-framework-netbeans-phpcc
In project properties > Include path, add the folder where are the yii framework base files
Right click over the project in tab projects, then select properties
Image project properties
This enables code completion.
I have recently upgraded to net-beans 7.4 (PHP). Afterwards I have edited a php file and tried to create a patch as we generally do in net-beans Team > Export Diff Path & Tools Drop-down as well. However I am not able to find any option there. I have attached for where I am looking for.
Is there any way to create patch on net-beans 7.4
That would only happen if somehow your sources aren't recognized by NetBeans as managed by Git (or any source control).
Export Diff Patch is clearly listed in Git support specification for NetBeans 7.4.
However, it is invoked a bit differently:
Select the project root node in "Projects" view and invoke Team | Patches | Export Uncommitted Changes... main menu action.
"Export Diff Patch" dialog shows up.
Make sure you have the mlatest version of the Git plugin in your latest NetBeans.
I use Easyeclipse for PHP with the Subclipse plugin for a long time without any problem.
This morning I committed my project without any problem. This afternoon I try to commit it again and it gives this error, which concerns only a subfolder.
Unsupported working copy format
svn: This client is too old to work with working copy
'My subfolder'; please get a newer Subversion client
I found several questions where the solution was an update of the client, like the error suggests. But in my case, I didn't change any configuration nor installed anything.
I fear that some files got corrupted.
It could have happened during a manual copy-paste process on my local copy, but I have no indication for this.
Is there a way to know for sure if the problem is with the server side or with the client side.
What are possible steps to restore the situation ?
The problem is with the client side, server is not contacted at this stage. Your local repository checkout might have been silently upgraded by another svn client you use. Or it might also be damaged and Subclipse errorneously reports it as an upgrade it doesn't understand.
If you don't want to upgrade Subclipse, your only way is to do a fresh checkout from server, and copy over your changes from this upgraded repository.
This probably means you used another SVN client that was a newer version and upgraded the working copy to a newer format. Subclipse has versions that support all versions of Subversion. Most likely you need to install Subclipse 1.10.x which contains support for the SVN 1.8 working copy format.
http://subclipse.tigris.org/servlets/ProjectProcess?pageID=p4wYuA
Once you upgrade Subclipse to the right version it will immediately work again. Your existing working copy ought to still be fine.
In my case I move eclipse workspace place to another then problem is occured. For solving problem I checkout project form the svn repo. Then in old project I clean all svn files. (simple search .svn and delete ) then I copy the content to the just checkedout one my changes become visible and my project is up to date. This method can be applied for other annoying errors. Hope help someone
I am newbie in using SVN so this is my question.
I don't know how SVN really work but I want make new repository like here this were explained:
http://files.zend.com/help/Mobile/Zend-Studio/Advanced/content/configuring_an_svn_connection.htm
I don't know what should be in URL
I paste there path like:
file://F:/wamp/newSVNProject
newSVNProject - is empty folder where I want to make new SVN project
I was installed SVN in Zend Studio in "welcome page" but I don't know what to do next, how create my own SVN repository with the project? sorry for my english ;-)
I use wamp and I work local
You cannot create your own SVN repository only through the Zend PHP Studio.
What you've installed is the IDE connection to SVN and NOT a SVN server.
You will need to connect to an external (to your IDE/environment) SVN server.
There is a perspective in Eclipse that is used for adding/managing added repositories - it is called "Repository Explorer". You can add a Shortcut to if from the upper right corner of out IDE's window.
If you want to install an Subversion (SVN) Repository you will need to do totally different configurations. The easyest way is to provide the versioned content through a web server - like Apache.
You can read all about it in the Subversion Book.
I am a new git user, using the built in NetBeans support on Windows 7.
I have made some changes to my project files on a development computer, and committed them to a remote repo. I would now like to use git (NetBeans) to push my project to a bare repo that I have created on my live web server.
Is this possible using NetBeans commands or do I need to go to the command line.
Not sure about using it in Netbeans, but the Netbeans git docs appear to suggest you have to choose a repository to push to.