Problem with "git fetch"

Hi,

Is anyone else having trouble with fetching new changes from sourceforge?

I get the following:

~$ cd src/synfig-clean/ synfig-clean$ git fetch fatal: The remote end hung up unexpectedly synfig-clean$ cd ../synfig-devel/ synfig-devel$ git fetch gballintijn@synfig.git.sourceforge.net's password: fatal: '/gitroot/synfig': unable to chdir or not a git archive fatal: The remote end hung up unexpectedly synfig-devel$

Any thoughts?

G.

same problems for me! I have no clue. :frowning:

Sourceforge has changes its respository system recently.
Now Synfig git repository is a repository inside the proyect.
To solve this just change the .git/config file from:

[remote "origin"] url = ssh://genete@synfig.git.sourceforge.net/gitroot/synfig fetch = +refs/heads/*:refs/remotes/origin/*
to

[remote "origin"] url = ssh://genete@synfig.git.sourceforge.net/gitroot/synfig/synfig fetch = +refs/heads/*:refs/remotes/origin/*

Obviously make the change according to the current config file in your .git folder (your username if any, etc.)

I’m sorry for not have changed the source code instructions yet in the wiki :blush:

-G

What is the code for anonymous access?

Nevermind, it’s working again :slight_smile:

OK, thanks, I can fetch again!

G.