Skip to content

Commit 54fcc0a

Browse files
committed
Fixed README
1 parent 54f5431 commit 54fcc0a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![Screenshot of a git clone](/about.png)
44

5-
Whenever a repository is cloned, author information (user.email, user.name) is set according defined patterns. No longer pushing commits with your corporate email address by accident.
5+
Whenever a repository is cloned, author information (user.email, user.name, user.signingkey) is set according defined patterns. No longer pushing commits with your corporate email address by accident.
66

77
## Installation
88

@@ -28,10 +28,10 @@ You can use the file ".git-clone-init" as a starting point. Keep in mind to crea
2828
Example:
2929
```bash
3030
case "$url" in
31-
*@github.com:* ) email="my-public@email"; name="public name";;
32-
*//github.com/* ) email="my-public@email"; name="public name";;
33-
*@corp.com:* ) email="my-corporate@email"; name="real name";;
34-
*//corp.com/* ) email="my-corporate@email"; name="real name";;
31+
*@github.com:* ) email="my-public@email"; name="public name"; gpgid="GPG ID";;
32+
*//github.com/* ) email="my-public@email"; name="public name"; gpgid="GPG ID";;
33+
*@corp.com:* ) email="my-corporate@email"; name="real name"; gpgid="GPG same/other ID";;
34+
*//corp.com/* ) email="my-corporate@email"; name="real name"; gpgid="GPG same/other ID";;
3535
esac
3636
```
3737

0 commit comments

Comments
 (0)