Kaynağa Gözat

Fixes counter issue with single repo

main
Eric Amodio 4 yıl önce
ebeveyn
işleme
4a8a53978c
10 değiştirilmiş dosya ile 30 ekleme ve 10 silme
  1. +3
    -1
      src/commands/git/cherry-pick.ts
  2. +3
    -1
      src/commands/git/coauthors.ts
  3. +3
    -1
      src/commands/git/log.ts
  4. +3
    -1
      src/commands/git/merge.ts
  5. +3
    -1
      src/commands/git/rebase.ts
  6. +3
    -1
      src/commands/git/reset.ts
  7. +3
    -1
      src/commands/git/revert.ts
  8. +3
    -1
      src/commands/git/search.ts
  9. +3
    -1
      src/commands/git/show.ts
  10. +3
    -1
      src/commands/git/status.ts

+ 3
- 1
src/commands/git/cherry-pick.ts Dosyayı Görüntüle

@ -105,7 +105,9 @@ export class CherryPickGitCommand extends QuickCommand {
skippedStepOne = false;
if (context.repos.length === 1) {
skippedStepOne = true;
state.counter++;
if (state.repo == null) {
state.counter++;
}
state.repo = context.repos[0];
} else {

+ 3
- 1
src/commands/git/coauthors.ts Dosyayı Görüntüle

@ -124,7 +124,9 @@ export class CoAuthorsGitCommand extends QuickCommand {
skippedStepOne = false;
if (context.repos.length === 1) {
skippedStepOne = true;
state.counter++;
if (state.repo == null) {
state.counter++;
}
state.repo = context.repos[0];
} else {

+ 3
- 1
src/commands/git/log.ts Dosyayı Görüntüle

@ -91,7 +91,9 @@ export class LogGitCommand extends QuickCommand {
skippedStepOne = false;
if (context.repos.length === 1) {
skippedStepOne = true;
state.counter++;
if (state.repo == null) {
state.counter++;
}
state.repo = context.repos[0];
} else {

+ 3
- 1
src/commands/git/merge.ts Dosyayı Görüntüle

@ -98,7 +98,9 @@ export class MergeGitCommand extends QuickCommand {
skippedStepOne = false;
if (context.repos.length === 1) {
skippedStepOne = true;
state.counter++;
if (state.repo == null) {
state.counter++;
}
state.repo = context.repos[0];
} else {

+ 3
- 1
src/commands/git/rebase.ts Dosyayı Görüntüle

@ -99,7 +99,9 @@ export class RebaseGitCommand extends QuickCommand {
skippedStepOne = false;
if (context.repos.length === 1) {
skippedStepOne = true;
state.counter++;
if (state.repo == null) {
state.counter++;
}
state.repo = context.repos[0];
} else {

+ 3
- 1
src/commands/git/reset.ts Dosyayı Görüntüle

@ -90,7 +90,9 @@ export class ResetGitCommand extends QuickCommand {
skippedStepOne = false;
if (context.repos.length === 1) {
skippedStepOne = true;
state.counter++;
if (state.repo == null) {
state.counter++;
}
state.repo = context.repos[0];
} else {

+ 3
- 1
src/commands/git/revert.ts Dosyayı Görüntüle

@ -89,7 +89,9 @@ export class RevertGitCommand extends QuickCommand {
skippedStepOne = false;
if (context.repos.length === 1) {
skippedStepOne = true;
state.counter++;
if (state.repo == null) {
state.counter++;
}
state.repo = context.repos[0];
} else {

+ 3
- 1
src/commands/git/search.ts Dosyayı Görüntüle

@ -116,7 +116,9 @@ export class SearchGitCommand extends QuickCommand {
skippedStepOne = false;
if (context.repos.length === 1) {
skippedStepOne = true;
state.counter++;
if (state.repo == null) {
state.counter++;
}
state.repo = context.repos[0];
} else {

+ 3
- 1
src/commands/git/show.ts Dosyayı Görüntüle

@ -89,7 +89,9 @@ export class ShowGitCommand extends QuickCommand {
skippedStepOne = false;
if (context.repos.length === 1) {
skippedStepOne = true;
state.counter++;
if (state.repo == null) {
state.counter++;
}
state.repo = context.repos[0];
} else {

+ 3
- 1
src/commands/git/status.ts Dosyayı Görüntüle

@ -69,7 +69,9 @@ export class StatusGitCommand extends QuickCommand {
skippedStepOne = false;
if (context.repos.length === 1) {
skippedStepOne = true;
state.counter++;
if (state.repo == null) {
state.counter++;
}
state.repo = context.repos[0];
} else {

Yükleniyor…
İptal
Kaydet