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
Improve sapling behavior with devel packages
* If no bookmarks are found, consider always the same branchOrRef,
as if you where on a branch called "none".
* If a bookmark is there, use the bookmark as identifier for branchOrRef.
Auto prune on fetch
Fixes situations like the remote repository deleting a branch `a` and
creating a branch `a/b`. Otherwise we have situations like the
following:
```
error: cannot lock ref 'refs/remotes/origin/a/b': 'refs/remotes/a' exists; cannot create 'refs/remotes/origin/a/b'
```
Solution adapted from https://stackoverflow.com/a/67060742/20041091