Ver a proveniência

Fixes getting oldest unpushed commit w/ >1 remotes

main
Eric Amodio há 1 ano
ascendente
cometimento
fd1627b346
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      src/env/node/git/localGitProvider.ts

+ 1
- 1
src/env/node/git/localGitProvider.ts Ver ficheiro

@ -3500,7 +3500,7 @@ export class LocalGitProvider implements GitProvider, Disposable {
async getOldestUnpushedRefForFile(repoPath: string, uri: Uri): Promise<string | undefined> {
const [relativePath, root] = splitPath(uri, repoPath);
const data = await this.git.log__file(root, relativePath, '@{push}..', {
const data = await this.git.log__file(root, relativePath, '@{u}..', {
argsOrFormat: ['-z', '--format=%H'],
fileMode: 'none',
ordering: configuration.get('advanced.commitOrdering'),

Carregando…
Cancelar
Guardar