Showing 1 changed files with 16 additions and 0 deletions
+16
README.md
... ...
@@ -42,6 +42,10 @@ Rename the gitprep-latest directory to gitprep.
42 42
 ## Configuration
43 43
 
44 44
 GitPrep needs the git command. You must install git by yourself.
45
+If you don't yet set user.name and user.email, you must set them.
46
+
47
+    git config --global user.name "gitprep"
48
+    git config --global user.email "gitprep@example.com"
45 49
 
46 50
 You must add the correct git command path to the **gitprep.conf** config file.
47 51
 
... ...
@@ -262,6 +266,18 @@ Please increase the value of http.postBuffer.
262 266
     # 1GB
263 267
     git config http.postBuffer 1024000000
264 268
 
269
+### I can't create repository and see error message when I create repository with readme
270
+
271
+If you see the following error message in log/production.log
272
+
273
+    [Wed Feb 12 15:27:02 2014] [error] ... Can't execute git commit ...
274
+
275
+you need to set User name and Email of git.
276
+Please set user.name and user.email.
277
+
278
+    git config --global user.name "gitprep"
279
+    git config --global user.email "gitprep@example.com"
280
+
265 281
 ## Web Site
266 282
 
267 283
 [GitPrep Web Site](http://perlcodesample.sakura.ne.jp/gitprep-site/)