Selaa lähdekoodia

Fixes getting oldest unpushed commit w/ >1 remotes

main
Eric Amodio 1 vuosi sitten
vanhempi
commit
fd1627b346
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      src/env/node/git/localGitProvider.ts

+ 1
- 1
src/env/node/git/localGitProvider.ts Näytä tiedosto

@ -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'),

Ladataan…
Peruuta
Tallenna