GIgnoreX is a command-line utility for managing .gitignore files without directly modifying them. It allows you to add, remove, and list files to be ignored by Git without adding them to the .gitignore
file.
This tool is designed to handle Git-ignore functionality for files that editors or IDEs produce (such as configuration files) that you don't want to push to Git but also don't want to add explicitly to the .gitignore
file.
npm install -g gignorex
gignorex add <file/folder name>
gignorex remove <file/folder name>
gignorex list
gignorex add logs/
gignorex add /.vscode/
gignorex remove temp.txt
gignorex list
Contributions are welcome! If you have suggestions, enhancements, or bug fixes, feel free to open an issue or create a pull request.
This project is licensed under the MIT License.