github - How can I know how much percentage of git push is complete? -
i'm pushing code of around 200 mb repo. taking lot of time. there anyway can display progress bar, can know how amount of code pushed repo?
it's not progress "bar", git push
reports progress default when it's run terminal. official linux kernel git documentation git push
:
--progress
progress status reported on standard error stream default when attached terminal, unless
-q
specified. flag forces progress status if standard error stream not directed terminal.
the fact you're trying push 200 mb @ once suggests might doing sub-optimally git.
Comments
Post a Comment