-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ using PkgTemplates | |
t = Template() | ||
``` | ||
|
||
The no-keywords constructor assumes the existence of some preexisting Git configuration (set with `git config --global`): | ||
The no-keywords constructor assumes the existence of some preexisting Git configuration (show configuration using `git config --list` and set with `git config --global`): | ||
|
||
- `user.name`: Your real name, e.g. John Smith. | ||
- `user.email`: Your email address, eg. [email protected]. | ||
|
@@ -40,6 +40,7 @@ t("MyPkg") | |
However, it's probably desirable to customize the template to your liking with various options and plugins: | ||
|
||
```jl | ||
using PkgTemplates | ||
t = Template(; | ||
dir="~/code", | ||
plugins=[ | ||
|