RedpointArchive / phabricator

A Docker image that runs Phabricator, an open source software engineering tool
https://hub.docker.com/r/redpointgames/phabricator/
307 stars 98 forks source link

Unable to push to repo after recent update #62

Closed Matan closed 7 years ago

Matan commented 7 years ago

Hi,

Sorry for the cross linking of issues. I assumed I would need to go directly to Phabrictor to get assistance on an issue like this.

Please see the details here: https://secure.phabricator.com/T11947

I've been using this docker for a while now and it's been working great for my company.

Any help would be greatly appreciated.

Thanks!

Matan commented 7 years ago

The issue has been identified! Git 2.11 is to blame. Downgrading git in my custom entrypoint solves the problem.

## Manually install specific version of git
zypper --non-interactive install wget libcurl-devel

GIT_VERISON=2.10.2
wget https://github.com/git/git/archive/v$GIT_VERISON.tar.gz
tar -zxf v$GIT_VERISON.tar.gz

cd git-$GIT_VERISON

# https://git-scm.com/book/en/v2/Getting-Started-Installing-Git
make configure
./configure --prefix=/usr
make all
make install

cd ..
hach-que commented 7 years ago

Yeah, upstream support is pretty much limited to their hosted solution these days.

I'll see if I can find a software repository which has Git as 2.10.2 instead of 2.11.

hach-que commented 7 years ago

(Reopening to track Git versioning issue)

hach-que commented 7 years ago

Thanks for reporting this issue.