git-lfs/t/t-cherry-pick-commits.sh
brian m. carlson 9e006ac4e2
Rename default branch in tests to "main"
Currently, our default branch in tests is "master".  This is the Git
default, but the Git default will likely change in the future, so it
makes sense to update our testsuite to be explicit about the branch
name.  We'll ensure this continues by building against older versions of
Git as well as newer versions.

We use "main" for the new branch name, since that's the proposed value
upstream.

This commit was made entirely by automated means using the following
command:

  git grep -l master t | xargs sed -i -e 's/master/main/g'
2020-07-08 15:38:17 +00:00

37 lines
708 B
Bash

#!/usr/bin/env bash
. "$(dirname "$0")/testlib.sh"
begin_test "cherry-pick two commits without lfs cache"
(
set -e
reponame="$(basename "$0" ".sh")-cherry-pick-commits"
setup_remote_repo "$reponame"
clone_repo "$reponame" cherrypickcommits
git lfs track "*.dat"
git add .gitattributes
git commit -m "initial commit"
git branch secondbranch
echo "smudge a" > a.dat
git add a.dat
git commit -m "add a.dat"
commit1=$(git log -n1 --format="%H")
echo "smudge b" > b.dat
git add b.dat
git commit -m "add a.dat"
commit2=$(git log -n1 --format="%H")
git push origin main
git checkout secondbranch
rm -rf .git/lfs/objects
git cherry-pick $commit1 $commit2
)
end_test