Gitleaks is a SAST tool for detecting and preventing hardcoded secrets like passwords, api keys, and tokens in git repos. Gitleaks is an easy-to-use, all-in-one solution for detecting secrets, past or present, in your code. Use this tag for questions related to gitleaks
Questions tagged [gitleaks]
17 questions
-1
votes
1 answer
Deleting a directory from git history on a specific branch
The issue:
There is a folder in my GitHub repo, in a branch called 'my-branch' and it needs to be removed. It is not the last commit.
Details of issue:
created a branch off of master, let's call it 'my-branch'.
did some work in 'my-branch'…

A K
- 3
- 1
-2
votes
3 answers
How to install go package after downloading?
I ran this:
cd $GOPATH && go get -u github.com/zricethezav/gitleaks
perplexingly, I now have this:
$GOPATH/
src/
github.com/
gitleaks/
but there is not a bin/ folder ... I would have expected to see the bin folder here: …
user7898461