.gitattributes
not handled properly with git archive
call
#444
Labels
bug
Something is clearly a bug
effort/medium
Can be done in 1-2 days
gain/medium
Affects multiple users
For example if the project is built with
setuptools_scm
, it can use an automatically generated file.git_archival.txt
in case the tar ball is not a git repo, specifially:Will generate the following file after running
git archive HEAD
The issue is that if we run as
git archive HEAD:./
, this generation breaks and it is not generated.My understanding is that the path
./
after the colon:
is to specify the relative path to the git repository to archive. If that is the case, it should be fixable by changing it to:The text was updated successfully, but these errors were encountered: