We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba27afd commit c3394c6Copy full SHA for c3394c6
1 file changed
lib/commands/status.js
@@ -113,11 +113,11 @@ Clone wiki: ${ ansi.hl( upstream.wikiSshCloneUrl ) }
113
const text = [];
114
115
if ( status.behind ) {
116
- text.push( "pull:" + ansi.error( ` ${ status.behind } ` ) );
+ text.push( "📥pull:" + ansi.error( ` ${ status.behind } ` ) );
117
}
118
119
if ( status.ahead ) {
120
- text.push( "push:" + ansi.error( ` ${ status.ahead } ` ) );
+ text.push( "📤push:" + ansi.error( ` ${ status.ahead } ` ) );
121
122
123
return text.join( "\n" );
0 commit comments