Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to resume a failed checkout with subclipse?

I am using STS 2.9 with Subclipse plugin under Ubuntu Linux. I am trying to checkout the entire repository (with all trunks and branches) and to have it neatly appearing as a project in the workspace. What I normally do is checkout the root of the repository. The reason I need the entire repository is that I work both on branches and trunk versions, so having it all is easier for me to work. Here is what I want to achieve

Workspace
  repo/
    branches/
    tags/
    trunk/
  other_repo/
    branches/
    tags/
    trunk/
  some_other_workspace_entry(ex. java project)

Unfortunately, we are having a repository which exceeds 5GB in size, and it is taking forever for subclipse to check it out, until finally it throws an error. So, I end up with a repository that is not completely checked out and I cannot continue checking it out. I must either delete all the checked out data and start it all over again (till it fails again), or checkout trunk and branches separately - thus having a trunk and branches entries in my workspace, which I must avoid.

The question is - is there a way to continue the unfinished checkout of the repo? Alternatively is it possible to check it out by subfolders, but to still have the desired tree structure in my workspace? If I need to manually edit via text editor some workspace files, which ones and how?

like image 538
Ivaylo Slavov Avatar asked Nov 20 '12 12:11

Ivaylo Slavov


1 Answers

Just do an update and the checkout will resume. Alternatively you can do this with any command line tool.

like image 161
Kai Avatar answered Sep 19 '22 12:09

Kai