Browse Source

Remove GIT_CURL_VERBOSE=1 from git commands

Too low signal:noise ratio, and far too much noise.
FeRD (Frank Dana) 3 months ago
parent
commit
2d8ac297c5

+ 1 - 1
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 \

+ 1 - 1
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 \

+ 1 - 1
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
 

+ 1 - 1
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

+ 1 - 1
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"

+ 1 - 1
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"

+ 1 - 1
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"