Browse Source

forgot symlinks

Zach 2 năm trước cách đây
mục cha
commit
54f5f04a1f
2 tập tin đã thay đổi với 1 bổ sung5 xóa
  1. 0 5
      cmd/detect.go
  2. 1 0
      cmd/root.go

+ 0 - 5
cmd/detect.go

@@ -13,12 +13,8 @@ import (
 
 func init() {
 	rootCmd.AddCommand(detectCmd)
-	detectCmd.Flags().String("log-opts", "", "git log options")
 	detectCmd.Flags().Bool("no-git", false, "treat git repo as a regular directory and scan those files, --log-opts has no effect on the scan when --no-git is set")
 	detectCmd.Flags().Bool("pipe", false, "scan input from stdin, ex: `cat some_file | gitleaks detect --pipe`")
-	detectCmd.Flags().Bool("follow-symlinks", false, "scan files that are symlinks to other files")
-	detectCmd.Flags().StringSlice("enable-rule", []string{}, "only enable specific rules by id, ex: `gitleaks detect --enable-rule=atlassian-api-token --enable-rule=slack-access-token`")
-	detectCmd.Flags().StringP("gitleaks-ignore-path", "i", ".", "path to .gitleaksignore file or folder containing one")
 }
 
 var detectCmd = &cobra.Command{
@@ -94,4 +90,3 @@ func runDetect(cmd *cobra.Command, args []string) {
 
 	findingSummaryAndExit(findings, cmd, cfg, exitCode, start, err)
 }
-

+ 1 - 0
cmd/root.go

@@ -57,6 +57,7 @@ func init() {
 	rootCmd.PersistentFlags().String("log-opts", "", "git log options")
 	rootCmd.PersistentFlags().StringSlice("enable-rule", []string{}, "only enable specific rules by id, ex: `gitleaks detect --enable-rule=atlassian-api-token --enable-rule=slack-access-token`")
 	rootCmd.PersistentFlags().StringP("gitleaks-ignore-path", "i", ".", "path to .gitleaksignore file or folder containing one")
+	rootCmd.PersistentFlags().Bool("follow-symlinks", false, "scan files that are symlinks to other files")
 	err := viper.BindPFlag("config", rootCmd.PersistentFlags().Lookup("config"))
 	if err != nil {
 		log.Fatal().Msgf("err binding config %s", err.Error())