Skip to content
/ gitcs Public

πŸ“ˆ Command line tool written in Go. It allows developers to scan their local Git repositories and generate a visual contributions graph.

License

Notifications You must be signed in to change notification settings

knbr13/gitcs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

68a6ae0 Β· Mar 17, 2025
Mar 17, 2025
Dec 11, 2023
Jun 10, 2024
Dec 30, 2023
Mar 17, 2025
Feb 2, 2024
Dec 30, 2023
Dec 10, 2023
Jun 10, 2024
Mar 17, 2025
Dec 11, 2023
Mar 2, 2024
Mar 17, 2025
Jan 6, 2025
Mar 17, 2025
Mar 17, 2025
Mar 2, 2024
Mar 17, 2025
Mar 1, 2024
Mar 17, 2025

Repository files navigation

gitcs

Go Report Card Mentioned in Awesome Go

Git Commits Visualizer (gitcs shortly) is a command-line tool that allows developers to analyze their local Git repositories and generate a visual contributions graph. This tool proves valuable for developers working across multiple Git services like GitHub and GitLab (because there are already graphs provided online by each of them, but each has it's own data, this tool works locally, so no matter where you've pushed the project, commits will count), enabling them to visualize contributions seamlessly, even in offline or disconnected environments.

gitcs

Dependencies

  • Go
  • Git

Installation

Ensure that you have Go installed on your machine before installing this tool. Execute the following command:

  go install github.com/knbr13/gitcs@latest

Alternatively, if you don't have Go installed, download the latest release from this repository.

Usage

The basic usage of this tool is to just run it, it will generate a graph of commits from the last 6 months.

> gitcs -path "/home/user/dev"

These commits are committed by your global Git email address, but you can also use the -email flag to show commits for another Git email.

> gitcs -email "[email protected]" -path "/home/user/dev"

By default, the tool displays commits from the last 6 months, but you can configure this using the since and until flags.

> gitcs -since "2023-10-24" -until "2024-01-15" -path "/home/user/dev"
  • If no global Git email is set on your machine, then you have to specify it using the -email flag.
  • The since and until flags don't need to be specified together.

Contributions

Contributions are welcome! If you would like to contribute to this project, please follow these steps:

1- Fork the repository.

2- Create a new branch for your feature or bug fix.

3- Make the necessary changes and commit them.

4- Push your changes to your fork.

5- Submit a pull request describing your changes.

License

This project is licensed under the MIT License. See the LICENSE file for details.

About

πŸ“ˆ Command line tool written in Go. It allows developers to scan their local Git repositories and generate a visual contributions graph.

Topics

Resources

License

Stars

Watchers

Forks