Merge pull request #57 from mortenpi/patch-1

Clarify necessary Git options in docs
This commit is contained in:
Chris de Graaf 2019-02-14 08:34:23 -06:00 committed by GitHub
commit 403ef201d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ pkg> add PkgTemplates
## Usage
The simplest template requires no arguments.
Assuming you have the relatively standard Git options `user.name`, `user.email` and `github.user` set up globally with `git config --global`, the simplest template requires no arguments:
```julia
julia> using PkgTemplates

View File

@ -28,7 +28,7 @@ Pkg.activate(mktempdir())
Pkg.add(PackageSpec(path=dirname(dirname(pwd()))))
```
The simplest template requires no arguments.
Assuming you have the relatively standard Git options `user.name`, `user.email` and `github.user` set up globally with `git config --global`, the simplest template requires no arguments:
```@repl usage