Micro Roguelike tiles 1-Bit Pack Urizen 1Bit Tilesets
Roguelike dungeon generation library written on Python3 Cave Generation Rooms and Mazes: A Procedural Dungeon Generator
Remove the history from a git repo
rm -rf .git
Recreate the repos from the current content only
git init
git add .
git commit -m "init"
Push to the github remote repos ensuring you overwrite history
git remote add origin git@github.com:<YOUR ACCOUNT>/<YOUR REPOS>.git
git push -u --force origin master