diff --git a/cli/git.js b/cli/git.js index 75407ba..3182fea 100644 --- a/cli/git.js +++ b/cli/git.js @@ -4,7 +4,7 @@ async function getCommits(path) { const format = `{"hash":"%h","author":{"login":"%aN"},"date":"%ad"},`; const { stdout } = await execa("git", [ "log", - "--follow", + // "--follow", "--reverse", `--pretty=format:${format}`, "--date=iso", @@ -15,7 +15,7 @@ async function getCommits(path) { const messagesOutput = await execa("git", [ "log", - "--follow", + // "--follow", "--reverse", `--pretty=format:%s`, "--", diff --git a/src/landing.js b/src/landing.js index d269ee1..9737f37 100644 --- a/src/landing.js +++ b/src/landing.js @@ -23,7 +23,7 @@ export default function Landing() {