I am trying to "profile" from the command line how much time a dokku/heroku push deploy takes. I would like to add a relative timestamp to each line in the output of git push.
Using ts from moreutils does not work - it adds prints randomly:
git push dokku main 2>&1 | ts -s
How can I make this work?
Apparently the server is sending ANSI escape characters that deletes the output created by
ts!Solves this issue.