static async getWorkspaceGitRoot()

in src/utils/utils.ts [51:57]


  static async getWorkspaceGitRoot(): Promise<string | null> {
    const workspaceRoot = Utils.getWorkspaceRoot()
    if (!workspaceRoot) {
      return null
    }
    return Utils.getGitRootFromPath(workspaceRoot.fsPath)
  }