[cli] Add git metadata to vc deploy (#7910)

Currently, git metadata is not included on the Vercel dashboard when a project is deployed via the CLI. This PR populates the git metadata.

### 📋 Checklist

<!--
  Please keep your PR as a Draft until the checklist is complete
-->

#### Tests

- [x] The code changed/added as part of this PR has been covered with tests
- [x] All tests pass locally with `yarn test-unit`

#### Code Review

- [ ] This PR has a concise title and thorough description useful to a reviewer
- [ ] Issue from task tracker has a link to this PR
This commit is contained in:
Matthew Stanciu
2022-06-10 13:53:47 -07:00
committed by GitHub
parent 17cb5f1bc6
commit 1f0ca46626
154 changed files with 5146 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ export interface LogOptions extends PrintOptions {
}
export class Output {
private debugEnabled: boolean;
debugEnabled: boolean;
private spinnerMessage: string;
private _spinner: StopSpinner | null;
isTTY: boolean;