New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

git-did

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-did

Git activity tracker for standup meetings and project monitoring

latest
Source
npmnpm
Version
0.6.0
Version published
Maintainers
1
Created
Source

git-did - Git Activity Tracker

Git activity tracker for standup meetings and project monitoring.

Installation

npm install --global git-did

Or install from GitHub sources:

npm install --global https://github.com/mabhub/git-did

Usage

git-did [days] [path]
# or via git:
git did [days] [path]

Show git activity for the last [days] days in [path] (default: 7 days, current directory).

# Current directory, last 7 days
git-did

# 14 days in current directory
git-did 14

# Specific path (default 7 days)
git-did ~/projects

# Specific path and timeframe
git-did 14 ~/projects

# Project mode (group by repository)
git-did --project 3 ~/projects

# Output formats: text (default), json, markdown
git-did --format json 7 ~/projects > report.json

# Date ranges
git-did --since 2025-10-25 --until 2025-10-31 ~/projects

# Works great with xargs
find ~/projects -type d -name ".git" -exec dirname {} \; | xargs -I {} git-did 30 {}

Use git-did --help for all available options.

Configuration

Configure default behaviors using git config:

# Examples (global configuration)
git config --global did.defaultDays 14
git config --global did.defaultMode project
git config --global did.colors always
git config --global did.defaultFormat markdown
git config --global did.defaultAuthor "user@example.com"

Available configuration keys: did.defaultDays, did.defaultMode, did.colors, did.defaultFormat, did.defaultAuthor.

CLI arguments always override configuration values.

More Examples

# Filter by author
git-did --author john@example.com 7 ~/projects

# Short mode (overview only)
git-did --short 7 ~/projects

# Combined modes
git-did -ps 14 ~/projects

Features

  • Recursive Git repository discovery
  • Multiple display modes (default, project, short)
  • Author-based commit filtering
  • Configurable time period
  • Git config integration for persistent preferences
  • Symbolic link loop detection
  • Permission error handling
  • .didignore file support for path exclusion
  • Execution time tracking
  • Multiple output formats (text, JSON, Markdown)
  • Parallel Git operations for improved performance
  • Smart color detection with 24-bit true color support
  • Time-of-day color coding for commit timestamps
  • Flexible date range selection (days or exact dates)

Keywords

git

FAQs

Package last updated on 21 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts