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