GitHub submitted exercises

Does anyone know if there’s a way to save the completed exercises to GitHub?

This will work pretty easily for you :slight_smile:

git init
git add .
// Add repo from github
git push

Maybe with adding a gitignore for any private files.

It might be interesting to trigger a exercism submit as a commit hook or merge action.

3 Likes

GitHub - clechasseur/auxiliaire: Your friendly Exercism assistant might be useful if you need to download your solutions. Then you could add the local files to whatever provider you’re using to backup your solutions.

2 Likes

Thank you everyone