git config auto login

This commit is contained in:
Hannes
2025-11-19 19:11:27 +01:00
parent c3fa8d316b
commit e8d4aa0ae7

View File

@@ -25,10 +25,26 @@ cat /path/to/password/file
Example Example
``` ```
#!/bin/bash #!/bin/bash
cat /path/to/password/file cat $HOME/.cred/git_password.txt
``` ```
Empty: Empty:
``` ```
#!/bin/bash #!/bin/bash
cat cat
``` ```
# The file that the script calls needs to have the following content:
```
username=username
password=password
```
Example
```
username=Max
password=123
```
Empty:
```
username=
password=
```