Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-10-30 00:45:18 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-10-30 00:50:49 +0400
commita8fe8d4fe9868b11bf6417e4b9b6b3e50d637b69 (patch)
treea5e6b2cffa6fd65fef129aac095bf33265af6229 /tests/fate.sh
parent0460b9bb3e34472223084a6c3ad35b4ded9c276b (diff)
parent9510d7689e236f6a4748795604fba427c130d0ad (diff)
Merge commit '9510d7689e236f6a4748795604fba427c130d0ad'
* commit '9510d7689e236f6a4748795604fba427c130d0ad': fate.sh: Allow non-fast-forwards when updating sources Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tests/fate.sh')
-rwxr-xr-xtests/fate.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fate.sh b/tests/fate.sh
index c474be7139..69dcdd6b58 100755
--- a/tests/fate.sh
+++ b/tests/fate.sh
@@ -35,7 +35,7 @@ checkout(){
update()(
cd ${src} || return
case "$repo" in
- git:*) git pull --quiet ;;
+ git:*) git fetch --force; git reset --hard origin/master ;;
esac
)