You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when trying to follow the installation instructions for the master branch on Ubuntu 16.04 I encountered the following error:
$ python Scripts/UpdateCommon.py
Cloning common-lib-amd-ADL into /home/jstephan/build/Common/Lib/AMD/ADL
error: unknown option `no-tags'
usage: git clone [<options>] [--] <repo> [<dir>]
-v, --verbose be more verbose
-q, --quiet be more quiet
--progress force progress reporting
-n, --no-checkout don't create a checkout
--bare create a bare repository
--mirror create a mirror repository (implies bare)
-l, --local to clone from a local repository
--no-hardlinks don't use local hardlinks, always copy
-s, --shared setup as shared repository
--recursive initialize submodules in the clone
--recurse-submodules initialize submodules in the clone
--template <template-directory>
directory from which templates will be used
--reference <repo> reference repository
--dissociate use --reference only while cloning
-o, --origin <name> use <name> instead of 'origin' to track upstream
-b, --branch <branch>
checkout <branch> instead of the remote's HEAD
-u, --upload-pack <path>
path to git-upload-pack on the remote
--depth <depth> create a shallow clone of that depth
--single-branch clone only one branch, HEAD or --branch
--separate-git-dir <gitdir>
separate git dir from working tree
-c, --config <key=value>
set config inside the new repository
'git clone' failed with return code 129
Using python2 or python3 doesn't make a difference as this is a git error. I'm using the default git version in the Ubuntu repository:
$ git --version
git version 2.7.4
Removing the "no-tags" flag from the script worked for me but I don't know if this will cause issues at some point.
The text was updated successfully, but these errors were encountered:
Removing the "--no-tags" from the script will not cause any issues, but may increase the time it takes to clone projects. I don't recall what version of git introduced the "--no-tags" option, but it is available in git v2.11.
Hi,
when trying to follow the installation instructions for the master branch on Ubuntu 16.04 I encountered the following error:
Using
python2
orpython3
doesn't make a difference as this is a git error. I'm using the default git version in the Ubuntu repository:Removing the "no-tags" flag from the script worked for me but I don't know if this will cause issues at some point.
The text was updated successfully, but these errors were encountered: