diff --git a/git/config.md b/git/config.md index e06c585..6cde1fc 100644 --- a/git/config.md +++ b/git/config.md @@ -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= ``` \ No newline at end of file