0

I am using GitAhead on an existing repo, and trying to pull or fetch to get updates.

GitAhead is giving me this error:

Unable to fetch from 'origin' - config value 'autoupdate.enable' was not found

Git itself doesn't seem to have this config parameter .. so not sure what GitAhead is expecting.

Appreciate any pointers/solutions.

cheenu
  • 138
  • 2
  • 8

2 Answers2

1

It looks like this is a config parameter of GitAhead so it might be an internal bug. Does it happen with the latest version of GitAhead / any existing git repository?

The developer might help you / fix the bug if you raise an issue.

dreua
  • 527
  • 2
  • 15
  • Maybe issue specific to amazon web services codecommit via ssh, as they rely on ~/.ssh/config User value of aws "SSH key ID" .. [raised issue](https://github.com/gitahead/gitahead/issues/271) – cheenu Sep 17 '19 at 10:05
0

I have been using GitAhead for a while, but mainly for viewing the merge graphs. I just tried using GitAhead to do a pull, and I ran into this problem as well.

I couldn't find any solutions online, but I found that GitAhead (version 2.62.2 on CentOS 7.8) does not understand:

ssh://hostname/path_to_repo

I get the error in the original question.

However, the solution for me was to use the following URL when cloning from a remote repository:

git clone user_id@hostname:/path_to_repo

After creating another clone with this URL, I'm able to pull in GitAhead.

Jeremy Caney
  • 7,102
  • 69
  • 48
  • 77