Compizfox
Compizfox

Reputation: 748

Importing project from Github doesn't work in Aptana

I try to import a project from Github in Aptana via Import Project --> Git Repository as New Project. I login using my Github Credentials and it lists my repositories. I choose a repository to import.

But then it hangs on Resolving deltas: (6/6), 100% done.

I already tried to download Git for Windows and point Aptana to that Git executable, but it doesn't change anything.

EDIT:

I just found out that something similar happens when I connect an existing project to the Github repo. When pushing or pulling, Aptana hangs on Launching delegate....

Upvotes: 1

Views: 818

Answers (1)

VonC
VonC

Reputation: 1324757

One workaround to try first is to clone the repo in command line (with Git For Windows) and then import the project in Aptana.

If the clone doesn't work, then you need to investigate what is (partially cloned), as in this blog post:

  • check what git fsck returns,
    For instance, this blog post suggests using git merge, but also adds in the comments:

Since the pack files have been downloaded correctly all you need to do is to interrupt the process with Ctrl+C, do a git fetch to fetch branch information from the remote repository and checkout the master (or any other) branch again with a git checkout master


Nicholas Dipiazza confirms the issue in the comments:

I use mysysgit - same problem with any git client I try and use on Windows.
Seems like as soon as you run git pull or git push, it will hang on "Launching Delegate". It's clearly a defect.
Using the terminal and then running the commands that freeze up is the work-around.

Upvotes: 1

Related Questions