-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from tupleapp/coauthorsDocWindows
document how to configure coauthors trigger, include windows
- Loading branch information
Showing
2 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
# git-coauthors | ||
|
||
Automatically add git coauthors when pairing on a call | ||
Automatically add git coauthors when pairing on a call. | ||
|
||
Updates the file `$HOME/.gitmessage` with each participant as a coauthor. | ||
|
||
Ensure that `$HOME/.gitmessage` shows up in your commit template with the following command: | ||
|
||
```sh | ||
$ git config --global commit.template $HOME/.gitmessage | ||
``` | ||
|
||
For Windows you can use: | ||
|
||
```batch | ||
> git config --global commit.template %USERPROFILE%\.gitmessage | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "Git Coauthors", | ||
"description": "Automatically add git coauthors when pairing on a call", | ||
"platforms": ["macos", "linux"], | ||
"platforms": ["macos", "linux", "windows"], | ||
"language": "ruby" | ||
} |