You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2015/05/19 11:33:34 UTC

incubator-ignite git commit: # ignite-456: set user

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-456 88d3ffd60 -> 2287143b7


# ignite-456: set user


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/2287143b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/2287143b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/2287143b

Branch: refs/heads/ignite-456
Commit: 2287143b7dddcb7685b38df6b4734b3cc7fbba22
Parents: 88d3ffd
Author: Artem Shutak <as...@gridgain.com>
Authored: Tue May 19 12:34:26 2015 +0300
Committer: Artem Shutak <as...@gridgain.com>
Committed: Tue May 19 12:34:26 2015 +0300

----------------------------------------------------------------------
 dev-tools/src/main/groovy/jiraslurp.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/2287143b/dev-tools/src/main/groovy/jiraslurp.groovy
----------------------------------------------------------------------
diff --git a/dev-tools/src/main/groovy/jiraslurp.groovy b/dev-tools/src/main/groovy/jiraslurp.groovy
index 93be1b7..c3d95b5 100644
--- a/dev-tools/src/main/groovy/jiraslurp.groovy
+++ b/dev-tools/src/main/groovy/jiraslurp.groovy
@@ -133,8 +133,8 @@ def applyPatch = { jira, attachementURL ->
         patchFile << new URL("$ATTACHMENT_URL/$attachementURL/").text
 
         try {
-//            checkprocess "git config --global user.email \"$userEmail\"".execute(null, new File("../"))
-//            checkprocess "git config --global user.name \"$userName\"".execute(null, new File("../"))
+            checkprocess "git config user.email \"$userEmail\"".execute(null, new File("../"))
+            checkprocess "git config user.name \"$userName\"".execute(null, new File("../"))
 
             // Create a new uniqueue branch to applying patch
             checkprocess "git checkout -b test-branch-${jira}-${attachementURL}-${System.currentTimeMillis()}".