What is the output of git subtree push and how can I make it faster? [duplicate]

StackOverflow https://stackoverflow.com/questions/23173499

  •  06-07-2023
  •  | 
  •  

質問

When executing git subtree push, the application outputs a series of numbers, which seem to continuously increase as the number of commits to the repo increase. The problem that this causes is that pushing subtree changes take a really long time since there have been so many commits to them. Is there any way of speeding this process up?

役に立ちましたか?

解決

You can use the --rejoin option when pushing. After the split is done an extra commit will be created joining the newly created tree with your main repository. Subsequent splits or pushes will take it from there and run faster.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top