From 093a51aa48202296545a7dfacce6792ec146b7af Mon Sep 17 00:00:00 2001 From: "build@lguplus.co.kr" Date: Fri, 15 Dec 2023 19:55:20 +0900 Subject: [PATCH] test --- lib/oto/commands/git/git.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/oto/commands/git/git.dart b/lib/oto/commands/git/git.dart index e7bae1b..f379899 100644 --- a/lib/oto/commands/git/git.dart +++ b/lib/oto/commands/git/git.dart @@ -47,7 +47,7 @@ class GitRev extends Command { var shell = StringBuffer(getCDPath(workspace)); var target = data.branch ?? 'HEAD'; target = replaceTag(target); - shell.write(' && git fetch origin'); + // shell.write(' && git fetch origin'); shell.write(' && git rev-parse $target'); var process = await ProcessExecutor.start(shell, printStderr: false); var exitCode = await process.process.exitCode;