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