We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f53c5fd commit dfb4d82Copy full SHA for dfb4d82
src/utils/storage.ts
@@ -91,12 +91,11 @@ export class GitIntentionalCommitStorage {
91
const result = await git.cwd(root).show(`${this.REFS_PREFIX}/commits:${this.storageFilename}`);
92
const data = this.migrateData(JSON.parse(result));
93
94
- console.log(data);
95
return data.commits;
96
} catch {
97
const commitsFile = await this.getCommitsFile();
98
const data = this.migrateData(await fs.readJSON(commitsFile));
99
+
100
101
}
102
0 commit comments