Skip to content

Commit

Permalink
fix bit effort
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswalz committed Oct 12, 2020
1 parent 3185285 commit 596447a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cmd/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@ var infoCmd = &cobra.Command{
fmt.Println("--- SUMMARY ---")
RunInTerminalWithColor("/bin/sh", []string{`-c`, gitextras.GitSummary})

fmt.Println("\n--- EFFORT ---\n")
fmt.Println("Commits | Files")
// git log --pretty=format: --name-only | sort | uniq -c | sort -rg | awk 'NR > 1 { print }' | head -15
fmt.Println("\n--- EFFORT ---")
fmt.Println("\nCommits | Files")
RunInTerminalWithColor("/bin/sh", []string{`-c`, `git log --pretty=format: --name-only | sort | uniq -c | sort -rg | awk 'NR > 1 { print }' | head -15`})
},
//Args: cobra.MaximumNArgs(1),
Expand Down

0 comments on commit 596447a

Please sign in to comment.