File tree Expand file tree Collapse file tree 2 files changed +26
-4
lines changed Expand file tree Collapse file tree 2 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 6
6
workflow_dispatch :
7
7
inputs :
8
8
release :
9
- description : ' Release Tag '
9
+ description : ' Release Id '
10
10
required : true
11
11
default : ' latest'
12
12
Original file line number Diff line number Diff line change @@ -88,6 +88,30 @@ sudo /usr/local/share/gcm-core/uninstall.sh
88
88
89
89
### Linux Debian package (.deb)
90
90
91
+ ` apt-get ` support is available for Ubuntu Bionic Beaver (18.04) and Hirsute
92
+ Hippo (21.04). Take the following steps to set up and install based on the
93
+ version you are running:
94
+
95
+ #### Ubuntu 18.04 (Bionic)
96
+
97
+ ``` shell
98
+ curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
99
+ sudo apt-add-repository https://packages.microsoft.com/ubuntu/18.04/prod
100
+ sudo apt-get update
101
+ sudo apt-get install gcmcore
102
+ ```
103
+
104
+ #### Ubuntu 21.04 (Hirsute)
105
+
106
+ ``` shell
107
+ curl -sSL https://packages.microsoft.com/config/ubuntu/21.04/prod.list | sudo tee /etc/apt/sources.list.d/microsoft-prod.list
108
+ curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc
109
+ sudo apt-get update
110
+ sudo apt-get install gcmcore
111
+ ```
112
+
113
+ #### Other Ubuntu/Debian distributions
114
+
91
115
Download the latest [ .deb package] ( https://github.com/microsoft/Git-Credential-Manager-Core/releases/latest ) , and run the following:
92
116
93
117
``` shell
@@ -97,9 +121,7 @@ git-credential-manager-core configure
97
121
98
122
Note that Linux distributions [ require additional configuration] ( https://aka.ms/gcmcore-linuxcredstores ) to use GCM Core.
99
123
100
- ---
101
-
102
- ### Linux tarball (.tar.gz)
124
+ #### Other distributions
103
125
104
126
Download the latest [ tarball] ( https://github.com/microsoft/Git-Credential-Manager-Core/releases/latest ) , and run the following:
105
127
You can’t perform that action at this time.
0 commit comments