← 返回命令列表

Linux command

git-who 命令

文本

复制后可按需替换文件名、目录或参数。

常用示例

Show

git-who

Show

git-who [author-name]

Show

git-who --stale

Sort

git-who --sort date

说明

git-who lists remote Git branches showing the author and date of the last commit on each branch. It helps identify who owns which branches and how stale they are. The tool is useful for repository cleanup, finding old branches, and understanding branch ownership in teams.

参数

--stale
Show only stale branches (30+ days old)
--sort _FIELD_
Sort by: date, author, name (default: date)
--remote _REMOTE_
Specify remote (default: origin)
--format _FORMAT_
Output format: table, csv, json
-v, --version
Display version and exit
-h, --help
Display help and exit

FAQ

What is the git-who command used for?

git-who lists remote Git branches showing the author and date of the last commit on each branch. It helps identify who owns which branches and how stale they are. The tool is useful for repository cleanup, finding old branches, and understanding branch ownership in teams.

How do I run a basic git-who example?

Run `git-who` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does --stale do in git-who?

Show only stale branches (30+ days old)