Git command that adds co-authors to the latest commit.
- Interactive search and selection
- Multi select co-authors with Tab/Shift-Tab
git add-co-author
- Make sure you have installed fzf,
- Make sure to create a setup for local binaries:
- Create a directory for local binaries:
mkdir ~/.local/bin
- Add it to the PATH for local usage:
- If you use bash, place following line in your
~/.bash_profile
:export PATH="${PATH}:/~/.local/bin"
- If you use fish, place following line in your
~/.config/fish/config.fish
:set -gx PATH "$HOME/.local/bin" $PATH
- If you use bash, place following line in your
- Create a directory for local binaries:
- Install git command:
wget https://raw.githubusercontent.com/Offpics/git-add-co-author/main/bin/git-add-co-author -P ~/.local/bin && chmod +x ~/.local/bin/git-add-co-author