Skip to content

Instantly share code, notes, and snippets.

@Aviksaikat
Created August 14, 2023 13:42
Show Gist options
  • Save Aviksaikat/b1b7818423d1f4f686716c6fd83a3116 to your computer and use it in GitHub Desktop.
Save Aviksaikat/b1b7818423d1f4f686716c6fd83a3116 to your computer and use it in GitHub Desktop.
remove ignored files from .gitignore
#!/bin/bash
git rm -r --cached . && git add . && git commit -am "Remove ignored files"
echo "Now run git push to make the changes to the remove repo"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment