Hi, bei mir bricht das Clonen des „Shopware 6 development template“ Repositories immer wieder ab:
Cloning into ‚development‘…
remote: Enumerating objects: 93, done.
remote: Counting objects: 100% (93/93), done.
remote: Compressing objects: 100% (73/73), done.
remote: Total 4572 (delta 39), reused 73 (delta 19), pack-reused 4479
Receiving objects: 100% (4572/4572), 4.82 MiB | 834.00 KiB/s, done.
Resolving deltas: 100% (2500/2500), done.
fatal: BUG: initial ref transaction called with existing refs
Ich starte es in einem Ubunto Docker Container mit dem Befehl
git clone https://github.com/shopware/development.git
Kennt das jemand?
MrAle
2
Hi,
git --version?
Schonmal das Verzeichnis komplett gelöscht und nochmal neu probiert?
Gruß
Alex
Ja. Habe das Image nun nochmal komplett neu aufgesetzt.Wieder das Problem.
So sollte das init Script aussehen: initNewShopware.sh
git clone https://github.com/shopware/development.git
cp -a /var/www/html/development/. /var/www/html/
cd /var/www/html && rm -rf development
cd /var/www/html && rm -rf platform
git clone https://github.com/shopware/platform.git
#try the orignal setup form shopware
cd /var/www/html && php bin/setup
Es liegt an der git Version.
Aus dem normalen Ubuntu wird nur version 2.17 installiert.
RUN apt-get update \
&& apt-get install -y git \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
Ich habe es so angepasst (#How to Install the Latest Git Version on Ubuntu):add-apt-repository ppa:git-core/ppa
RUN add-apt-repository ppa:git-core/ppa
&& apt-get update \
&& apt-get install -y git \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*