Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert usage of `git_buf_free` to new `git_buf_dispose` | Patrick Steinhardt | 2018-06-10 | 1 | -4/+4 |
| | |||||
* | worktree: introduce git_worktree_add options | Patrick Steinhardt | 2017-05-02 | 1 | -1/+1 |
| | | | | | | | | | The `git_worktree_add` function currently accepts only a path and name for the new work tree. As we may want to expand these parameters in future versions without adding additional parameters to the function for every option, this commit introduces our typical pattern of an options struct. Right now, this structure is still empty, which will change with the next commit. | ||||
* | submodule: resolve URLs relative to main worktree | Patrick Steinhardt | 2017-03-17 | 1 | -0/+33 |
| | | | | | | | | | | | | | | | It is possible to specify submodule URLs relative to the repository location. E.g. having a submodule with URL "../submodule" will look for the submodule at "repo/../submodule". With the introduction of worktrees, though, we cannot simply resolve the URL relative to the repository location itself. If the repository for which a URL is to be resolved is a working tree, we have to resolve the URL relative to the parent's repository path. Otherwise, the URL would change depending on where the working tree is located. Fix this by special-casing when we have a working tree while getting the URL base. | ||||
* | tests: worktree: unify init/cleanup in submodule tests | Patrick Steinhardt | 2017-03-15 | 1 | -39/+29 |
| | |||||
* | tests: worktree: move submodule tests into own suite | Patrick Steinhardt | 2017-03-15 | 1 | -0/+69 |