Failing server certificate verification during git clone #31
Labels
No labels
UserStory
bug
duplicate
enhancement
help wanted
hw task
invalid
question
refactoring
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
mattzz/halloween#31
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
On my newly set up RPi I get the following message when trying to close the git repo. How can it be worked-around?
export GIT_SSL_NO_VERIFY=1or
git config --global http.sslverify falseThis has severe security implications as this is a global setting for all repos...
So better restrict it to the current repo only:
git config http.sslVerify falsehttps://stackoverflow.com/questions/9008309/how-do-i-set-git-ssl-no-verify-for-specific-repos-only
Super, thanks. I first used
env GIT_SSL_NO_VERIFY=true git clone https://mattzz.no-ip.org:3000/mattzz/halloween.gitto clone it and then configuredgit config http.sslVerify false