Skip to content

using_git

Joris Snellenburg edited this page Jul 11, 2021 · 1 revision

Tips and tricks

Creating an orphan branch

Create branches to store results/benchmarks and so on in a repo w/o having the actual repo code on that branch as well.

git checkout --orphan comparison-results
git reset
git commit --allow-empty -m "Create empty branch"
Clone this wiki locally