https://github.com/allyedge/allyignore-cpp
A tool that finds and removes unnecessary lines from .gitignore files.
https://github.com/allyedge/allyignore-cpp
c-plus-plus cpp git gitignore gitignore-generator
Last synced: about 1 month ago
JSON representation
A tool that finds and removes unnecessary lines from .gitignore files.
- Host: GitHub
- URL: https://github.com/allyedge/allyignore-cpp
- Owner: Allyedge
- License: mit
- Created: 2024-02-04T17:17:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-04T17:18:02.000Z (over 2 years ago)
- Last Synced: 2025-04-09T04:41:23.597Z (about 1 year ago)
- Topics: c-plus-plus, cpp, git, gitignore, gitignore-generator
- Language: C++
- Homepage:
- Size: 73.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Allyignore-CPP
[](https://github.com/Allyedge/allyignore-cpp)
A tool that finds and removes unnecessary lines from `.gitignore` files.
## C++
This is the C++ rewrite of Allyignore, mostly for practice. The original version was written in Go. You can find it at https://github.com/Allyedge/allyignore.
## Usage
```sh
# CMake.
> cmake .
# Compile Allyignore.
> make all
# Run Allyignore.
> allyignore
# Run Allyignore but don't keep comments and empty lines.
> allyignore --nokeep
# Get help with the commands and options.
> allyignore --help
# Get the version number of Allyignore.
> allyignore --version
```