Skip to content

Commit c3394c6

Browse files
committed
refactor: add pull / push emojis
1 parent ba27afd commit c3394c6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/commands/status.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@ Clone wiki: ${ ansi.hl( upstream.wikiSshCloneUrl ) }
113113
const text = [];
114114

115115
if ( status.behind ) {
116-
text.push( "pull:" + ansi.error( ` ${ status.behind } ` ) );
116+
text.push( "📥pull:" + ansi.error( ` ${ status.behind } ` ) );
117117
}
118118

119119
if ( status.ahead ) {
120-
text.push( "push:" + ansi.error( ` ${ status.ahead } ` ) );
120+
text.push( "📤push:" + ansi.error( ` ${ status.ahead } ` ) );
121121
}
122122

123123
return text.join( "\n" );

0 commit comments

Comments
 (0)