What would I use git-worktree for?

前端 未结 10 1179
不知归路
不知归路 2020-11-27 10:18

I read Github\'s post on git-worktree. They write:

Suppose you\'re working in a Git repository on a branch called feature, when a user re

10条回答
  •  感情败类
    2020-11-27 10:45

    I'm using git worktree for machine learning development.

    I have a main functional code and then I want to split branches of different experiments (different algorithms and different hyperparameters). git worktree allows me to integrate dvc alongside different versions of my code specialized to different algorithms. After running all training jobs I evaluate final metrics and merge to master the best branch/model.

提交回复
热议问题