The url of permit2 in .gitmodules creates sync issue for me. It was git@github.com:Uniswap/permit2.git. But using it prevents GitHub Desktop or Foundry from installling dependencies automatically.
To replicate, simply do
git clone https://github.com/Uniswap/universal-router
cd .\universal-router\
forge install
The following is printed:
Cloning into '******/universal-router/lib/permit2'...
Host key verification failed.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
After changing the url to https://github.com/Uniswap/permit2, it syncs smoothly.
The url of
permit2
in.gitmodules
creates sync issue for me. It wasgit@github.com:Uniswap/permit2.git
. But using it prevents GitHub Desktop or Foundry from installling dependencies automatically.To replicate, simply do
The following is printed:
After changing the url to
https://github.com/Uniswap/permit2
, it syncs smoothly.