git config auto login
This commit is contained in:
@@ -25,10 +25,26 @@ cat /path/to/password/file
|
||||
Example
|
||||
```
|
||||
#!/bin/bash
|
||||
cat /path/to/password/file
|
||||
cat $HOME/.cred/git_password.txt
|
||||
```
|
||||
Empty:
|
||||
```
|
||||
#!/bin/bash
|
||||
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=
|
||||
```
|
||||
Reference in New Issue
Block a user