A collection of useful scripts and tools for everyday development.
Quick git operations with single commands.
# Save all changes
./scripts/quick-git.sh save "message"
# Undo last commit
./scripts/quick-git.sh undo
# Create and switch branch
./scripts/quick-git.sh branch FeatureNameCreate project directory structures.
# Create React project
./scripts/project-init.sh react my-app
# Create Node.js API
./scripts/project-init.sh nodejs my-api
# Create Python project
./scripts/project-init.sh python my-scriptFind large files on disk.
./scripts/find-large.sh /path/to/dir 100 # Find files larger than 100MBgit clone https://github.com/BoraAITA/devtools.git
cd devtools
chmod +x scripts/*.shMIT License