diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2017-04-24 22:40:42 +0200 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2017-04-24 22:40:42 +0200 |
commit | 5f9e2bfe1473584d50b8add781adca3223482ee3 (patch) | |
tree | 88473bf22fc7d25cbf8767122e5b57d38e8c6d7a /jjb/common | |
parent | bca6f2256f8c5c9bd57dae256c2f0b169e1871d1 (diff) |
One git command and replace all existing
Change-Id: I83fd7c86e9427796cfc30c0ab05a7088a1e1f5c3
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'jjb/common')
-rw-r--r-- | jjb/common/include-agl-header.sh | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/jjb/common/include-agl-header.sh b/jjb/common/include-agl-header.sh index ac7acd62..3ccf17f4 100644 --- a/jjb/common/include-agl-header.sh +++ b/jjb/common/include-agl-header.sh @@ -140,13 +140,15 @@ set | grep ^MACHINE || true set -x -rm -rf ~/.gitconfi* || true - -git config --global user.email "jenkins-dontreply@build.automotivelinux.org" -sync -sleep 1 -ls -alh ~/.gitconfi* -rm -rf ~/.gitconfig.lock || true -git config --global user.name "jenkins-dontreply@build.automotivelinux.org" +#rm -rf ~/.gitconfi* || true + +git config --global --replace-all --add user.email "jenkins-dontreply@build.automotivelinux.org" --add user.name "jenkins-dontreply@build.automotivelinux.org" + +#git config --global user.email "jenkins-dontreply@build.automotivelinux.org" +#sync +#sleep 1 +#ls -alh ~/.gitconfi* +#rm -rf ~/.gitconfig.lock || true +#git config --global user.name "jenkins-dontreply@build.automotivelinux.org" set +x |