Opened 2 weeks ago
Closed 2 weeks ago
#5824 closed defect (wontfix)
Wrong git clone URL in installation.xml.
Reported by: | xinbo | Owned by: | strk |
---|---|---|---|
Priority: | medium | Milestone: | PostGIS 3.6.0 |
Component: | QA/testsuite | Version: | master |
Keywords: | Cc: |
Description
The git clone URL in the installation.xml file is incorrect.
<programlisting>git clone https://git.osgeo.org/gitea/postgis/postgis.git postgis
cd postgis sh autogen.sh
</programlisting>
Extra "postgis"
Change History (4)
comment:1 by , 2 weeks ago
Milestone: | PostGIS 3.5.2 → PostGIS 3.6.0 |
---|---|
Version: | 3.5.x → master |
comment:2 by , 2 weeks ago
comment:3 by , 2 weeks ago
Component: | postgis → QA/testsuite |
---|---|
Owner: | changed from | to
comment:4 by , 2 weeks ago
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Not seeing why that is wrong, both
git clone https://git.osgeo.org/gitea/postgis/postgis.git postgis
and
git clone https://git.osgeo.org/gitea/postgis/postgis.git
should yield the same result. The one in the docs with the extra postgis, explicitly creates the directory. The one you propose, creates the default directory which is the name without .git in it.
Both should yield the same result. I prefer the explicitness of what is in the docs, as I often do things like
git clone https://git.osgeo.org/gitea/postgis/postgis.git postgis-git cd postgis-git
Note:
See TracTickets
for help on using tickets.
See https://github.com/postgis/postgis/pull/786