Skip to content

Commit c684443

Browse files
clockyjacob314
authored andcommitted
fix(auth): update terminology to 'sign in' and 'sign out' (google-gemini#20892)
Co-authored-by: Jacob Richman <jacob314@gmail.com>
1 parent bc3a121 commit c684443

35 files changed

+95
-78
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Integrate Gemini CLI directly into your GitHub workflows with
147147

148148
Choose the authentication method that best fits your needs:
149149

150-
### Option 1: Login with Google (OAuth login using your Google Account)
150+
### Option 1: Sign in with Google (OAuth login using your Google Account)
151151

152152
**✨ Best for:** Individual developers as well as anyone who has a Gemini Code
153153
Assist License. (see
@@ -161,7 +161,7 @@ for details)
161161
- **No API key management** - just sign in with your Google account
162162
- **Automatic updates** to latest models
163163

164-
#### Start Gemini CLI, then choose _Login with Google_ and follow the browser authentication flow when prompted
164+
#### Start Gemini CLI, then choose _Sign in with Google_ and follow the browser authentication flow when prompted
165165

166166
```bash
167167
gemini

docs/cli/settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ they appear in the UI.
6666
| Show Line Numbers | `ui.showLineNumbers` | Show line numbers in the chat. | `true` |
6767
| Show Citations | `ui.showCitations` | Show citations for generated text in the chat. | `false` |
6868
| Show Model Info In Chat | `ui.showModelInfoInChat` | Show the model name in the chat for each model turn. | `false` |
69-
| Show User Identity | `ui.showUserIdentity` | Show the logged-in user's identity (e.g. email) in the UI. | `true` |
69+
| Show User Identity | `ui.showUserIdentity` | Show the signed-in user's identity (e.g. email) in the UI. | `true` |
7070
| Use Alternate Screen Buffer | `ui.useAlternateBuffer` | Use an alternate screen buffer for the UI, preserving shell history. | `false` |
7171
| Use Background Color | `ui.useBackgroundColor` | Whether to use background colors in the UI. | `true` |
7272
| Incremental Rendering | `ui.incrementalRendering` | Enable incremental rendering for the UI. This option will reduce flickering but may cause rendering artifacts. Only supported when useAlternateBuffer is enabled. | `true` |

docs/core/subagents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ returns coordinates and element descriptions that the browser agent uses with
194194
the `click_at` tool for precise, coordinate-based interactions.
195195

196196
> **Note:** The visual agent requires API key or Vertex AI authentication. It is
197-
> not available when using Google Login.
197+
> not available when using "Sign in with Google".
198198
199199
## Creating custom subagents
200200

docs/get-started/authentication.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Select the authentication method that matches your situation in the table below:
1717

1818
| User Type / Scenario | Recommended Authentication Method | Google Cloud Project Required |
1919
| :--------------------------------------------------------------------- | :--------------------------------------------------------------- | :---------------------------------------------------------- |
20-
| Individual Google accounts | [Login with Google](#login-google) | No, with exceptions |
21-
| Organization users with a company, school, or Google Workspace account | [Login with Google](#login-google) | [Yes](#set-gcp) |
20+
| Individual Google accounts | [Sign in with Google](#login-google) | No, with exceptions |
21+
| Organization users with a company, school, or Google Workspace account | [Sign in with Google](#login-google) | [Yes](#set-gcp) |
2222
| AI Studio user with a Gemini API key | [Use Gemini API Key](#gemini-api) | No |
2323
| Google Cloud Vertex AI user | [Vertex AI](#vertex-ai) | [Yes](#set-gcp) |
2424
| [Headless mode](#headless) | [Use Gemini API Key](#gemini-api) or<br> [Vertex AI](#vertex-ai) | No (for Gemini API Key)<br> [Yes](#set-gcp) (for Vertex AI) |
@@ -36,7 +36,7 @@ Select the authentication method that matches your situation in the table below:
3636
[Google AI Ultra for Business](https://support.google.com/a/answer/16345165)
3737
subscriptions.
3838

39-
## (Recommended) Login with Google <a id="login-google"></a>
39+
## (Recommended) Sign in with Google <a id="login-google"></a>
4040

4141
If you run Gemini CLI on your local machine, the simplest authentication method
4242
is logging in with your Google account. This method requires a web browser on a
@@ -54,9 +54,9 @@ To authenticate and use Gemini CLI:
5454
gemini
5555
```
5656

57-
2. Select **Login with Google**. Gemini CLI opens a login prompt using your web
58-
browser. Follow the on-screen instructions. Your credentials will be cached
59-
locally for future sessions.
57+
2. Select **Sign in with Google**. Gemini CLI opens a sign in prompt using your
58+
web browser. Follow the on-screen instructions. Your credentials will be
59+
cached locally for future sessions.
6060

6161
### Do I need to set my Google Cloud project?
6262

@@ -391,7 +391,7 @@ on this page.
391391
[Headless mode](../cli/headless) will use your existing authentication method,
392392
if an existing authentication credential is cached.
393393
394-
If you have not already logged in with an authentication credential, you must
394+
If you have not already signed in with an authentication credential, you must
395395
configure authentication using environment variables:
396396
397397
- [Use Gemini API Key](#gemini-api)

docs/get-started/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ cases, you can log in with your existing Google account:
3838
```
3939

4040
2. When asked "How would you like to authenticate for this project?" select **1.
41-
Login with Google**.
41+
Sign in with Google**.
4242

4343
3. Select your Google account.
4444

docs/reference/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ their corresponding top-level category object in your `settings.json` file.
297297
- **Default:** `false`
298298

299299
- **`ui.showUserIdentity`** (boolean):
300-
- **Description:** Show the logged-in user's identity (e.g. email) in the UI.
300+
- **Description:** Show the signed-in user's identity (e.g. email) in the UI.
301301
- **Default:** `true`
302302

303303
- **`ui.useAlternateBuffer`** (boolean):

docs/release-confidence.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ manually run through this checklist.
7979
- [ ] Verify version: `gemini --version`
8080

8181
- **Authentication:**
82-
- [ ] In interactive mode run `/auth` and verify all login flows work:
83-
- [ ] Login With Google
82+
- [ ] In interactive mode run `/auth` and verify all sign in flows work:
83+
- [ ] Sign in with Google
8484
- [ ] API Key
8585
- [ ] Vertex AI
8686

docs/resources/tos-privacy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ for further information.
4646
| Gemini Developer API Key | Gemini API - Paid Services | [Gemini API Terms of Service - Paid Services](https://ai.google.dev/gemini-api/terms#paid-services) | [Google Privacy Policy](https://policies.google.com/privacy) |
4747
| Vertex AI GenAI API Key | Vertex AI GenAI API | [Google Cloud Platform Terms of Service](https://cloud.google.com/terms/service-terms/) | [Google Cloud Privacy Notice](https://cloud.google.com/terms/cloud-privacy-notice) |
4848

49-
## 1. If you have logged in with your Google account to Gemini Code Assist
49+
## 1. If you have signed in with your Google account to Gemini Code Assist
5050

5151
For users who use their Google account to access
5252
[Gemini Code Assist](https://codeassist.google), these Terms of Service and
@@ -68,7 +68,7 @@ Code Assist Standard or Enterprise edition, the terms and privacy policy of
6868
Gemini Code Assist Standard or Enterprise edition will apply to all your use of
6969
Gemini Code Assist._
7070

71-
## 2. If you have logged in with a Gemini API key to the Gemini Developer API
71+
## 2. If you have signed in with a Gemini API key to the Gemini Developer API
7272

7373
If you are using a Gemini API key for authentication with the
7474
[Gemini Developer API](https://ai.google.dev/gemini-api/docs), these Terms of
@@ -84,7 +84,7 @@ Service and Privacy Notice documents apply:
8484
- Privacy Notice: The collection and use of your data is described in the
8585
[Google Privacy Policy](https://policies.google.com/privacy).
8686

87-
## 3. If you have logged in with a Gemini API key to the Vertex AI GenAI API
87+
## 3. If you have signed in with a Gemini API key to the Vertex AI GenAI API
8888

8989
If you are using a Gemini API key for authentication with a
9090
[Vertex AI GenAI API](https://cloud.google.com/vertex-ai/generative-ai/docs/reference/rest)

docs/resources/troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ topics on:
2929
added to your organization's Gemini Code Assist subscription.
3030

3131
- **Error:
32-
`Failed to login. Message: Your current account is not eligible... because it is not currently available in your location.`**
32+
`Failed to sign in. Message: Your current account is not eligible... because it is not currently available in your location.`**
3333
- **Cause:** Gemini CLI does not currently support your location. For a full
3434
list of supported locations, see the following pages:
3535
- Gemini Code Assist for individuals:
3636
[Available locations](https://developers.google.com/gemini-code-assist/resources/available-locations#americas)
3737

38-
- **Error: `Failed to login. Message: Request contains an invalid argument`**
38+
- **Error: `Failed to sign in. Message: Request contains an invalid argument`**
3939
- **Cause:** Users with Google Workspace accounts or Google Cloud accounts
4040
associated with their Gmail accounts may not be able to activate the free
4141
tier of the Google Code Assist plan.

packages/cli/src/config/settingsSchema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ const SETTINGS_SCHEMA = {
676676
requiresRestart: false,
677677
default: true,
678678
description:
679-
"Show the logged-in user's identity (e.g. email) in the UI.",
679+
"Show the signed-in user's identity (e.g. email) in the UI.",
680680
showInDialog: true,
681681
},
682682
useAlternateBuffer: {

0 commit comments

Comments
 (0)