summaryrefslogtreecommitdiff
path: root/tests/rebase/inmemory.c
Commit message (Collapse)AuthorAgeFilesLines
* rebase: test rebasing a new commit with subfolderEdward Thomson2016-06-021-0/+43
| | | | | Test a rebase (both a merge rebase and an inmemory rebase) with a new commit that adds files underneath a new subfolder.
* rebase: test rebase (merge) w/ no common ancestorEdward Thomson2016-05-031-5/+56
|
* rebase: persist a single in-memory indexEdward Thomson2016-02-151-4/+6
| | | | | | When performing an in-memory rebase, keep a single index for the duration, so that callers have the expected index lifecycle and do not hold on to an index that is free'd out from under them.
* rebase: introduce inmemory rebasingEdward Thomson2016-02-111-0/+114
Introduce the ability to rebase in-memory or in a bare repository. When `rebase_options.inmemory` is specified, the resultant `git_rebase` session will not be persisted to disk. Callers may still analyze the rebase operations, resolve any conflicts against the in-memory index and create the commits. Neither `HEAD` nor the working directory will be updated during this process.