2016-05-21 19 views
0

Jenkinsツールのプロジェクト[employee-model]に対してmavenリリースを実行すると、エラーが下になります。ファイルをコミットできません

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-release-plugin:2.4.1:prepare (default-cli) on project employee-model: Unable to commit files 
[ERROR] Provider message: 
[ERROR] The git-commit command failed. 
[ERROR] Command output: 
[ERROR] 
[ERROR] *** Please tell me who you are. 
[ERROR] 
[ERROR] Run 
[ERROR] 
[ERROR] git config --global user.email "[email protected]" 
[ERROR] git config --global user.name "Your Name" 
[ERROR] 
[ERROR] to set your account's default identity. 
[ERROR] Omit --global to set the identity only in this repository. 
[ERROR] 
[ERROR] fatal: unable to auto-detect email address (got '[email protected](none)') 
[ERROR] -> [Help 1] 
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. 
[ERROR] Re-run Maven using the -X switch to enable full debug logging. 
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles: 
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException 
[JENKINS] Archiving /var/lib/jenkins/jobs/Reconciliation-release-employee-model/workspace/cm 
+0

"jenkins @ ip-xx-xx-xx-xx。(none)"がプッシュする権限があることを確認してください。 GITサーバーにアクセスして、そのようなユーザーが定義されていることと、リポジトリに対する正しい読み取りアクセス権があることを確認してください。 sshを使用している場合はSSHキーを確認してください。がんばろう! – Dvir669

答えて

0

あなたの問題は、ジェンキンスではなくgitアカウントであるようです。 OSから ジェンキンスユーザーとして、実行するために最初に試す(仮定のlinux):提案と試みるとして「Gitの設定は、」コマンド

git config --global user.email "[email protected]" 
git config --global user.name "Your Name" 

問題:

cd .../path/to/project/ 
git push 

あなたは、同じエラーメッセージを表示していますもう一度押す。もしそれが固定されていれば - ジェンキンスも大丈夫です。

関連する問題