We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pore
safe.bareRepository=explicit
Git recently added a new security feature (safe.bareRepository=explicit) that disables git's automatic detection of bare repositories. It breaks pore:
rprichard@rprichard:/x/aosp$ pore sync [00:00:00] fetching 1/1 ########################################: platform/manifest: failed to fetch for project platform/manifest Caused by: git fetch failed: fatal: cannot use bare repository '/home/rprichard/pore-data/android/objects/platform/manifest.git' (safe.bareRepository is 'explicit') fatal: failed to sync
AFAIK the git project's default is still safe.bareRepository=all, but my computer has it set to explicit.
safe.bareRepository=all
explicit
I think passing any of GIT_DIR, --git-dir, or --bare to git would fix this issue.
GIT_DIR
--git-dir
--bare
git
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Git recently added a new security feature (safe.bareRepository=explicit) that disables git's automatic detection of bare repositories. It breaks
pore
:AFAIK the git project's default is still
safe.bareRepository=all
, but my computer has it set toexplicit
.I think passing any of
GIT_DIR
,--git-dir
, or--bare
togit
would fix this issue.The text was updated successfully, but these errors were encountered: