by ray | Jan 5, 2022 | Git
$ eval ssh-agent -s $ ssh-add ~/.ssh/id_rsa
by ray | Nov 15, 2021 | Git
When I try to run git-all-secrets I get Dockerfile: command not found Here is an example of the issue: root@momo22:/home/momo/git-all-secrets# docker run -it abhartiya/tools_gitallsecrets -token=9a8b60a10cf683f238e05 -org=bugcrwod Command ‘docker’ is...
by ray | Sep 10, 2021 | Git
You can use OAuth tokens to interact with GitHub Enterprise via automated scripts. Step 1: Get an OAuth token Create a personal access token on your application settings page. Tip: We recommend that you regularly review your authorized integrations. Remove any...
by ray | Sep 10, 2021 | Git, GitLab
It’s possible to use an access token like this: git clone https://oauth2:[email protected]/project.git
by ray | Aug 26, 2021 | Git
It’s because your key is encrypted with a passphrase to prevent others from reading it. The most convenient way of using passphrased keys is by using ssh-agent to start an authentication agent (which runs in the background): $ eval “$(ssh-agent)”...