This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
|
|
@ -0,0 +1,36 @@
|
|||
What happens if a branch has the same format as a ref?
|
||||
|
||||
$ . ../git-helpers.sh
|
||||
$ . ./helpers.sh
|
||||
$ mkrepo
|
||||
$ mkpkg foo 1.0
|
||||
$ cd mock-opam-repository
|
||||
$ git init --quiet
|
||||
$ git add -A
|
||||
$ git commit --quiet -m "Initial state, foo.1.0"
|
||||
$ AMBIGUOUS_REF=c3ba68d69316351bc660679f68fdc871bfb4f2d2
|
||||
$ git switch --quiet -c $AMBIGUOUS_REF
|
||||
$ mkpkg foo 2.0
|
||||
$ git add -A
|
||||
$ git commit --quiet -m "New foo.2.0 on branch $AMBIGUOUS_REF"
|
||||
$ git switch --quiet -
|
||||
$ cd ..
|
||||
|
||||
Use this ref in a project
|
||||
|
||||
$ add_mock_repo_if_needed "git+file://$PWD/mock-opam-repository#$AMBIGUOUS_REF"
|
||||
|
||||
Depend on foo from the repo
|
||||
|
||||
$ cat > dune-project <<EOF
|
||||
> (lang dune 3.10)
|
||||
>
|
||||
> (package
|
||||
> (name bar)
|
||||
> (depends foo))
|
||||
> EOF
|
||||
|
||||
Which foo will we get?
|
||||
|
||||
$ dune pkg lock 2>&1 | head -1 | sed "s/$AMBIGUOUS_REF/\$AMBIGUOUS_REF/g"
|
||||
revision "$AMBIGUOUS_REF" not found in
|
||||
Loading…
Add table
Add a link
Reference in a new issue