You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I may be wrong but it's not possible to add a git repo with ctf challenge add {repo_url} at first. This command relies on git subtree which is a shell script. this script calls ensure_clean to check the HEAD reference but our repo is empty at this point.
I would add a git commit --allow-empty -m "Project created" after the git init in main.py.
The text was updated successfully, but these errors were encountered:
Hi,
I may be wrong but it's not possible to add a git repo with
ctf challenge add {repo_url}
at first. This command relies ongit subtree
which is a shell script. this script callsensure_clean
to check the HEAD reference but our repo is empty at this point.I would add a
git commit --allow-empty -m "Project created"
after thegit init
in main.py.The text was updated successfully, but these errors were encountered: