git config auto login
This commit is contained in:
@@ -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=
|
||||||
```
|
```
|
||||||
Reference in New Issue
Block a user