t / t5527-fetch-odd-refs.shon commit Merge branch 'maint-2.1' into maint (7ba4626)
   1#!/bin/sh
   2
   3test_description='test fetching of oddly-named refs'
   4. ./test-lib.sh
   5
   6# afterwards we will have:
   7#  HEAD - two
   8#  refs/for/refs/heads/master - one
   9#  refs/heads/master - three
  10test_expect_success 'setup repo with odd suffix ref' '
  11        echo content >file &&
  12        git add . &&
  13        git commit -m one &&
  14        git update-ref refs/for/refs/heads/master HEAD &&
  15        echo content >>file &&
  16        git commit -a -m two &&
  17        echo content >>file &&
  18        git commit -a -m three &&
  19        git checkout HEAD^
  20'
  21
  22test_expect_success 'suffix ref is ignored during fetch' '
  23        git clone --bare file://"$PWD" suffix &&
  24        echo three >expect &&
  25        git --git-dir=suffix log -1 --format=%s refs/heads/master >actual &&
  26        test_cmp expect actual
  27'
  28
  29test_done