Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 571 Bytes

git-standup.md

File metadata and controls

47 lines (33 loc) · 571 Bytes

git-standup

Links

CLI

Installation

Homebrew

brew install git-standup

Commands

git standup -h

Usage

#
git standup \
  -a 'Bruno Batista' \
  -A "$(date +%Y-%m-01) 00:00"

Tips

Scan Projects

#
export GIT_AUTHOR_NAME='Bruno Batista'
export GIT_AFTER_DATE="$(date +%Y-%m-01) 00:00"

#
find . \
  -type d \
  -name '.git' \
  -exec bash \
  -c 'cd $(dirname "{}"); git standup -a "$GIT_AUTHOR_NAME" -A "$GIT_AFTER_DATE"' \;