We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 297725e commit 9e07c12Copy full SHA for 9e07c12
2 files changed
lib/commands/status.js
@@ -174,7 +174,7 @@ Clone wiki: ${ ansi.hl( upstream.wikiSshCloneUrl ) }
174
} );
175
176
for ( const branchName of Object.keys( status.branchStatus ).sort() ) {
177
- const res = await pkg.git.getCurrentRelease( { "commitRef": branchName } );
+ const res = await pkg.git.getParentRelease( { "commitRef": branchName } );
178
179
table.write( {
180
branchName,
lib/git.js
@@ -60,7 +60,7 @@ export default class Git extends CoreGit {
60
var res;
61
62
if ( release ) {
63
- res = await this.getCurrentRelease( {
+ res = await this.getParentRelease( {
64
commitRef,
65
stable,
66
"changes": true,
0 commit comments