You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need --no-pager for some commands some time — e.g. git --no-pager branch --remotes --merged github-readwrite/master — and recommendation history | awk '$2 == "git" {print $1 " " $3}' > history.txt got me a node --no-pager in the graph, as a result.
So I used history | sed 's,--no-pager ,,' | awk '$2 == "git" {print $1 " " $3}' for a second iteration, instead. Maybe it's worth extending the recommend extraction command like that. What do you think?
Best, Sebastian
The text was updated successfully, but these errors were encountered:
Cool project!
I need
--no-pager
for some commands some time — e.g.git --no-pager branch --remotes --merged github-readwrite/master
— and recommendationhistory | awk '$2 == "git" {print $1 " " $3}' > history.txt
got me a node--no-pager
in the graph, as a result.So I used
history | sed 's,--no-pager ,,' | awk '$2 == "git" {print $1 " " $3}'
for a second iteration, instead. Maybe it's worth extending the recommend extraction command like that. What do you think?Best, Sebastian
The text was updated successfully, but these errors were encountered: