From 2d8ac297c5d8f53aee1032fe18638295baac50ee Mon Sep 17 00:00:00 2001 From: FeRD (Frank Dana) Date: Jan 25 2024 04:38:08 +0000 Subject: Remove GIT_CURL_VERBOSE=1 from git commands Too low signal:noise ratio, and far too much noise. --- diff --git a/dev/containers/entrypoint_pip.sh b/dev/containers/entrypoint_pip.sh index 2e89c2e..b67e768 100644 --- a/dev/containers/entrypoint_pip.sh +++ b/dev/containers/entrypoint_pip.sh @@ -1,6 +1,6 @@ #!/bin/bash cd / \ -&& GIT_TRACE=1 GIT_CURL_VERBOSE=1 git clone -b ${BRANCH} ${REPO} /pagure \ +&& GIT_TRACE=1 git clone -b ${BRANCH} ${REPO} /pagure \ && cp /tox_py3.sh /pagure/dev/containers/tox_py3.sh \ && chmod +x /pagure/dev/containers/tox_py3.sh \ && ln -s /tox /pagure/.tox \ diff --git a/dev/containers/entrypoint_rpms.sh b/dev/containers/entrypoint_rpms.sh index be549be..0687326 100644 --- a/dev/containers/entrypoint_rpms.sh +++ b/dev/containers/entrypoint_rpms.sh @@ -1,6 +1,6 @@ #!/bin/bash cd / \ -&& GIT_TRACE=1 GIT_CURL_VERBOSE=1 git clone -b ${BRANCH} ${REPO} /pagure \ +&& GIT_TRACE=1 git clone -b ${BRANCH} ${REPO} /pagure \ && chmod +x /pagure/dev/containers/runtests_py3.sh \ && cd /pagure \ && ln -s /results /pagure/results \ diff --git a/dev/containers/fedora-pip-py3 b/dev/containers/fedora-pip-py3 index 58cc29d..9bc82a9 100644 --- a/dev/containers/fedora-pip-py3 +++ b/dev/containers/fedora-pip-py3 @@ -21,7 +21,7 @@ RUN dnf -y install \ glibc-langpack-en RUN cd / \ - && GIT_TRACE=1 GIT_CURL_VERBOSE=1 git clone -b $BRANCH $REPO \ + && GIT_TRACE=1 git clone -b $BRANCH $REPO \ && chmod +x /pagure/dev/containers/tox_py3.sh \ && sed -i -e 's|"alembic-3"|"alembic"|' /pagure/tests/test_alembic.py diff --git a/dev/containers/fedora-rpms-py3 b/dev/containers/fedora-rpms-py3 index a6da18e..a1abe54 100644 --- a/dev/containers/fedora-rpms-py3 +++ b/dev/containers/fedora-rpms-py3 @@ -27,7 +27,7 @@ RUN dnf -y --enablerepo=updates-testing install \ RUN pip install pagure-messages RUN cd / \ - && GIT_TRACE=1 GIT_CURL_VERBOSE=1 git clone -b $BRANCH $REPO \ + && GIT_TRACE=1 git clone -b $BRANCH $REPO \ && chmod +x /pagure/dev/containers/runtests_py3.sh # Install all the requirements from the spec file and replace the macro diff --git a/dev/containers/runtests_py3.sh b/dev/containers/runtests_py3.sh index 70a157b..84598e7 100644 --- a/dev/containers/runtests_py3.sh +++ b/dev/containers/runtests_py3.sh @@ -11,7 +11,7 @@ if [ -n "$REPO" -a -n "$BRANCH" ]; then git remote rm proposed || true git gc --auto git remote add proposed "$REPO" -GIT_TRACE=1 GIT_CURL_VERBOSE=1 git fetch proposed +GIT_TRACE=1 git fetch proposed git checkout origin/master git config --global user.email "you@example.com" git config --global user.name "Your Name" diff --git a/dev/containers/tox_py3.sh b/dev/containers/tox_py3.sh index e20c08f..68755b0 100644 --- a/dev/containers/tox_py3.sh +++ b/dev/containers/tox_py3.sh @@ -11,7 +11,7 @@ if [ -n "$REPO" -a -n "$BRANCH" ]; then git remote rm proposed || true git gc --auto git remote add proposed "$REPO" -GIT_TRACE=1 GIT_CURL_VERBOSE=1 git fetch proposed +GIT_TRACE=1 git fetch proposed git checkout origin/master git config --global user.email "you@example.com" git config --global user.name "Your Name" diff --git a/run_ci_tests_containers.sh b/run_ci_tests_containers.sh index 51a4a99..22c55c2 100644 --- a/run_ci_tests_containers.sh +++ b/run_ci_tests_containers.sh @@ -10,7 +10,7 @@ if [ -n "$REPO" -a -n "$BRANCH" ]; then git remote rm proposed || true git gc --auto git remote add proposed "$REPO" -GIT_TRACE=1 GIT_CURL_VERBOSE=1 git fetch proposed +GIT_TRACE=1 git fetch proposed git checkout origin/master git config --global user.email "you@example.com" git config --global user.name "Your Name"