Quick Start
Get up and running with GitInspectorGUI in just a few steps.
Installation
Option 1: Download Executable (Recommended)
Download the latest release for your platform:
- GitHub Releases - GUI apps for Windows and macOS
- No installation required - just download and run
Option 2: Install from PyPI
Basic Usage
Using the GUI
- Launch the application
- Double-click the downloaded executable, or
-
Run
python -m gigui.gui
if installed via PyPI -
Select your repository
- Click "Browse" next to "Input folder path"
- Navigate to your Git repository folder
-
Click "Select Folder"
-
Run analysis
- Click the "Run" button
-
Wait for analysis to complete (progress shown in console)
-
View results
- Results automatically open in your default browser (HTML format)
- Excel files are saved to the repository's parent directory
Using the CLI
# Analyze current directory
gitinspectorgui .
# Analyze specific repository
gitinspectorgui /path/to/repository
# Generate Excel output
gitinspectorgui /path/to/repository --format excel
What You'll Get
GitInspectorGUI generates comprehensive reports showing:
- Author Statistics - Lines added/removed per contributor
- File Analysis - Contribution breakdown by file
- Blame Information - Line-by-line authorship with color coding
- Visual Reports - Easy-to-read HTML and Excel formats
Common Options
Filter by Date Range
# Only commits after 2023-01-01
gitinspectorgui . --since 2023-01-01
# Only commits before 2023-12-31
gitinspectorgui . --until 2023-12-31
Include Specific File Types
Exclude Authors
Next Steps
- GUI Guide - Complete GUI interface documentation
- CLI Guide - Full command-line reference
- Output Guide - Understanding your results
- Examples - Real-world usage scenarios
Need Help?
- FAQ - Common questions and solutions
- Known Issues - Current limitations
- GitHub Issues - Report bugs or request features