简体   繁体   中英

How to cherry-pick from superproject repo to subfolder repo?

After splitting a subfolder out into a new repository can you still use the original repo as a remote and cherry-pick pruned commits to the new repository.

The only option I could think of is getting the filter-branch the second time, pushing it as a second remote, then cherry-pick from the second remote to the new repository.

I don't know if this would be the reverse submodules or reverse subtrees.

After splitting a subfolder out into a new repository can you still use the original repo as a remote and cherry-pick pruned commits to the new repository.

The only option I could think of is getting the filter-branch the second time, pushing it as a second remote, then cherry-pick from the second remote to the new repository.

I don't know if this would be the reverse submodules or reverse subtrees.

Git's really flexible about things like this. If your other repo's on a shared filesystem you can even

GIT_ALTERNATE_OBJECT_DIRECTORIES=/path/to/other/repos/.git/objects \
git cherry-pick $itssha1

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM