You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add failing test for issue #46: Git tag update regression
This test demonstrates that updating from one Git tag to another
fails in v4.x (worked in v2.x).
Steps the test follows:
1. Create a repo with content at tag 1.0.0
2. Add more content and create tag 2.0.0
3. Initial checkout with branch=1.0.0 (works)
4. Update config to branch=2.0.0
5. Run update (FAILS - exits with 'No such branch 2.0.0')
The test currently fails because git_update() treats tags as
branches, trying to find them in 'git branch -a' output where
they don't appear.
Related to #46
0 commit comments