In my case I have a postCreateCommand that clones another organization repo. This works great under Codespaces but is hanging when using this project. I think what I see is that 🏃 start container will stop here.
Cloning into '/workspaces/mysharedrepo'...
Username for 'https://github.com/':
And never move from that spot. The lifecycle script is doing something like this.
git clone "https://${GITHUB_TOKEN}@github.com/myorg/mysharedrepo.git" /workspaces/mysharedrepo
cd /workspaces/mysharedrepo
Any recommendations to get that working?
In my case I have a
postCreateCommandthat clones another organization repo. This works great under Codespaces but is hanging when using this project. I think what I see is that🏃 start containerwill stop here.And never move from that spot. The lifecycle script is doing something like this.
Any recommendations to get that working?