Skip to content

Commit

Permalink
feat: add del all dotfiles command
Browse files Browse the repository at this point in the history
  • Loading branch information
YasminTeles committed Mar 6, 2024
1 parent 6e82233 commit 3e437eb
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.PHONY: help del

help: ## Show help.
@printf "A set of development's commands.\n"
@printf "\nUsage:\n"
@printf "\t make \033[36m<commands>\033[0m\n"
@printf "\nThe Commands are:\n\n"
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\t\033[36m%-30s\033[0m %s\n", $$1, $$2}'

del: ## delete all dotfiles
@stow --dotfiles -D git

0 comments on commit 3e437eb

Please sign in to comment.