@koddsson/coworking-with

0.4.3 • Public • Published

@koddsson/coworking-with

Easily add coworking signatures to your commits.

Usage

npx @koddsson/coworking-with <usernames>...

The script installs a commit-msg hook that will append all commit messages with Co-authored-by: USERNAME <EMAIL> for each user you have specified. This commit trailer can be picked up by tools such as GitHub.

Note that since we go through the git log history to find the signature that the user you want to cowork with needs to have at least one commit into the repo you are working in.

Quit "coworking mode" with the --stop flag.

npx @koddsson/coworking-with --stop

That's pretty much it.

Enhancements

I want a indicator in my shell to tell me if I'm coworking mode or not. I do this in my fish shell by checking the coworking.coauthor key in the git config.

function _is_coworking
  echo (command git config --get-all coworking.coauthor 2> /dev/null)
end

[..]

if [ (_is_coworking) ]
  set -l git_coworking "👨🏻‍💻"
  set git_info "$git_info$git_coworking"
end

This snippet just sets a little emoji on my prompt when I'm in coworking mode but your setup is going to need some different way to indicate coworking mode.

Readme

Keywords

Package Sidebar

Install

npm i @koddsson/coworking-with

Weekly Downloads

1

Version

0.4.3

License

MIT

Unpacked Size

7.95 kB

Total Files

7

Last publish

Collaborators

  • koddsson