export function username()

in src/help/git.ts [108:115]


export function username() {
  try {
    return shell.run('git config user.name', { capture: true });
  } catch (err) {
    console.warn(err.message);
    return undefined;
  }
}