blob: eae5e3df42f25108a24bf624169a11c06c7be2a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
post_install() {
echo ""
echo "Run the folloing to configure the application:"
echo "git-credential-manager configure"
echo ""
echo "And see the following url for backend configuration:"
echo "https://github.com/GitCredentialManager/git-credential-manager/blob/main/docs/credstores.md"
echo ""
}
post_upgrade() {
echo ""
echo "With this upgrade you need to change the path of the executable. For this run:"
echo "git-credential-manager unconfigure"
echo "and then"
echo "git-credential-manager configure"
echo ""
}
post_remove() {
echo ""
echo "Remove the credential helper from the git configuration:"
echo "git-credential-manager unconfigure"
echo ""
}
|