Hannes Körber

Results 25 comments of Hannes Körber

Upon further reading, I think there is no such thing as a worktree *name*. There are two things that are relevant for a worktree: * The path that it is...

Sounds awesome! To repeat & summarize: * The `name` parameter to `git_worktree_add` will now also allow `NULL`. * If it's non-`NULL`, we will retain the current behaviour. * If it's...

> I think that we should explicitly reject bogus names if we don't already. It's possible that we do, I'm not certain offhand. But I can imagine us tightening up...

Hey sorry, looks like I lost track of this. I think this can be closed.

Hey, is it planned to add a notice to the `README`? Currently it still states the following: > This repository is a work in progress This is quite confusing for...

Hey, I really like the idea! I'm not happy with the current, super verbose TOML config (I'm mainly using YAML for my own stuff, as it's much shorter). Implementing the...

How do you handle your SSH authentication? Do you have an SSH agent running? Can you SSH to the host normally?

Phew, I guess you'd have to configure libgit2 for interactive cloning. I guess this would involve some callbacks in git-rs' [`RepoBuilder::fetch_options`](https://docs.rs/git2/latest/git2/build/struct.RepoBuilder.html#method.fetch_options). See also [`RemoteCallbacks`](https://docs.rs/git2/latest/git2/struct.RemoteCallbacks.html). I will not be able to...

It's not an issue for grm per se, but still requires a workaround due to the issue with libgit2. You should be able to handle branches with slashes in them...

Hey! > While my repos are managed via the config file, it doesn't seem like worktrees are? You are correct, you cannot configure worktrees via config. For me, worktrees are...