A simple CLI-based tool to track changes in your Git repository in real-time.
- Instant feedback: Monitors file changes and updates the status automatically.
- Visual status: Color-coded status labels (Modified, Added, Deleted, etc.).
- Easy setup: Works in any Git repository.
- Clone this repository.
- Run
npm install. - Link the package globally:
npm link
Once published, users can install it using:
npm install -g termgitNavigate to any Git repository in your terminal and run:
git-watch- Chokidar: Watches the file system for any changes.
- Simple-Git: Fetches the current repository status on every change.
- Chalk: Styles the output for a better user experience.