apply-gitignore-after-git-created.sh 86 B

123456
  1. #!/bin/bash
  2. git rm -r --cached .
  3. git add .
  4. git commit -m "Apply .gitignore"
  5. git push