2 Get Yourself Set Up
You can set your preferences, including your display name, email address, gravatar, and email notifications, from the User Preferences page.
To get to this page, click the user avatar and select Preferences:
After setting your user preferences, you'll need to set up a Git client and decide whether to display the news banner or hide it.
Update Your Display Name
By default, VB Studio displays your Oracle Cloud account name as your display name across all pages. If you want to change it, you can do so from the User Preference page’s Profile tab.
Update Your Email Address
By default, VB Studio displays your Oracle Cloud email address across all pages and sends email notifications, such as merge request notifications and issue notifications, to this email address.
If you want VB Studio email notifications sent to another email address, you can change it on the User Preference page’s Profile tab:
-
If you’re using an email address as your Oracle Cloud login username, your original Oracle Cloud email address continues to be your login username even after you change your email address preference.
-
After you provide another email address, you’ll receive a verification email. It's important that you take the time to verify the new email address because, if you don't, you won't receive any VB Studio email notifications. You can, however, continue to use VB Studio.
Here's how to change the email address that email notifications will be sent to:
Add Your Avatar Picture
VB Studio displays your Gravatar picture as the avatar picture. If you don’t have a picture set in
Gravatar or don’t have a Gravatar account, VB Studio displays your initials instead of your avatar picture. To find out more about Gravatar,
see https://gravatar.com/
.
Configure Your Global Email Notifications
You can configure your preferences to receive email notifications when a component, such as an issue or a Git repository's branch that you’re subscribed to, is updated. Your preferences apply to all projects in which you're a member.
Note:
If your email address has changed, click the verification link in the email from VB Studio if you want to receive VB Studio email notifications. If you don't do this, when you go to the Profile tab under User Preferences, you'll see a Not Verified
Set Up a Git Client
You can use use any Git client, such as the Git command-line interface (CLI), to access Git repositories from your computer. However, you cannot access projects, issues, and builds from a Git client.
Git Command-Line Interface
Before you can use a Git client to access your project's Git repository, you must first install and configure it on your computer. The Git command line-interface (CLI) is the most popular Git client.
Here's how to download, install, and configure the Git CLI:
-
Download and install the Git CLI.
On Windows, use the Git Bash CLI to access project Git repositories. You can download Git Bash (version 1.8.x or later) from
http://git-scm.com/downloads
.On Linux and Unix, install Git using the preferred package manager. You can download Git for Linux and Unix from
http://git-scm.com/download/linux
. -
The VB Studio pages display your username and email address as the committer's name and email ID. Configure variables to set up your name and email address:
-
To configure your user name, set the
user.name
variable:git config --global user.name "John Doe"
-
To configure your email address, set the
user.email
variable:git config --global user.email "johndoe@example.com"
-
To disable SSL or configure the proxy server, set the
http.sslVerify
orhttp.proxy
variables:git config --global http.sslVerify false
git config --global http.proxy http://www.testproxyserver.com:80/
-
Tip:
To find out the value of a variable, use the git config
<variable>
command:
git config user.name
Upload Your Public SSH Key
Before you can connect to a Git repository using SSH, you must first generate a private-public RSA SSH key pair and upload the public key to VB Studio. If you use multiple computers to access Git repositories, you'll need to generate an SSH key pair from each computer and upload its public key.
Generate an SSH Key
To generate an RSA SSH key pair, you can use any SSH client, including the Git CLI.
By default, Git CLI access the
C:\Users\<USER_PROFILE>\.ssh\
directory to locate
the private key. If you are using another Git client, you may need to configure it
to access the private SSH key. Check your Git client’s documentation to find out how
to do that.
Add the Public SSH Key to Your VB Studio Account
After generating an SSH private-public key pair, add the public key to your User Preferences page’s Authentication tab.
- On the computer where you generated the SSH key pair, navigate to the directory where the public key is saved.
- Open the public key file in a text editor, select the contents, and copy them to the clipboard.
- In VB Studio, click the user avatar and select Preferences.
- Click the Authentication tab.
- Click Add Key.
- In the New SSH Key dialog box, enter a unique name and paste the SSH key that you copied in Step 2.
- Click Create.
- To the left of the User Preferences
title, click
to return to the last opened page.
Set Up Token-Based Authentication
You can create temporary OAuth access tokens to enable access to VB Studio project operations, including Git, Maven and NPM actions, from your VB Studio account preferences.
- You must copy a token immediately after you generate it and paste it somewhere that you can access it later. You won't have another opportunity to access the token.
- After an access token has been created, it can't be edited. If you want to change the permissions for a token, you'll need to delete it and then create a new one.
- If the permissions for a user are changed at the project level, this can affect the token-based authentication.
Note:
If you're using curl to work with REST APIs and federated users in a multi-stripe Oracle Cloud Applications environment, one approach is to authenticate with a bearer token. See the example in Sending Curl Request with Bearer Token to learn about how to use Curl with the -H "Authorization: Bearer {token}" authorization header to send the token to the server. If you don't send the token this way, you'll encounter an HTTP Status 401 error, indicating that you aren't authorized to make the call.To create a VB Studio authentication token:
You can also delete the token, which removes any permissions granted by the token.
After a token has been deleted, applications or scripts that use that token will no longer have access to the VB Studio API.
See the News Banner
A banner with the latest news from the VB Studio team is displayed on the Organization and Project Home pages' header.



- On the User Preferences page, click the General tab.
- Select the Show News Banner on Organization and Project Home check box.
- To the left of the User Preferences
title, click
to return to the last opened page.