Checkpoints
Create a new repository
/ 100
Cloud Source Repositories: Qwik Start
- GSP121
- Overview
- Objectives
- Setup and Requirements
- Task 1. Create a new repository
- Task 2. Clone the new repository into your Cloud Shell session
- Task 3. Push to the Cloud Source Repository
- Task 4. Browse files in the Google Cloud Source Repository
- Task 5. View a file in the Google Cloud repository
- Task 6. Test your understanding
- Congratulations!
GSP121
Overview
Google Cloud Source Repositories provides Git version control to support collaborative development of any application or service. In this lab, you will create a local Git repository that contains a sample file, add a Google Source Repository as a remote, and push the contents of the local repository. You will use the source browser included in Source Repositories to view your repository files from within the Cloud Console.
Objectives
In this lab, you will learn how to perform the following tasks:
- Create a new repository
- Add a Google Source Repository as a remote
- Push to the Cloud Source Repository
Setup and Requirements
Before you click the Start Lab button
Read these instructions. Labs are timed and you cannot pause them. The timer, which starts when you click Start Lab, shows how long Google Cloud resources will be made available to you.
This hands-on lab lets you do the lab activities yourself in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials that you use to sign in and access Google Cloud for the duration of the lab.
To complete this lab, you need:
- Access to a standard internet browser (Chrome browser recommended).
- Time to complete the lab---remember, once you start, you cannot pause a lab.
How to start your lab and sign in to the Google Cloud console
-
Click the Start Lab button. If you need to pay for the lab, a pop-up opens for you to select your payment method. On the left is the Lab Details panel with the following:
- The Open Google Cloud console button
- Time remaining
- The temporary credentials that you must use for this lab
- Other information, if needed, to step through this lab
-
Click Open Google Cloud console (or right-click and select Open Link in Incognito Window if you are running the Chrome browser).
The lab spins up resources, and then opens another tab that shows the Sign in page.
Tip: Arrange the tabs in separate windows, side-by-side.
Note: If you see the Choose an account dialog, click Use Another Account. -
If necessary, copy the Username below and paste it into the Sign in dialog.
{{{user_0.username | "Username"}}} You can also find the Username in the Lab Details panel.
-
Click Next.
-
Copy the Password below and paste it into the Welcome dialog.
{{{user_0.password | "Password"}}} You can also find the Password in the Lab Details panel.
-
Click Next.
Important: You must use the credentials the lab provides you. Do not use your Google Cloud account credentials. Note: Using your own Google Cloud account for this lab may incur extra charges. -
Click through the subsequent pages:
- Accept the terms and conditions.
- Do not add recovery options or two-factor authentication (because this is a temporary account).
- Do not sign up for free trials.
After a few moments, the Google Cloud console opens in this tab.
Activate Cloud Shell
Cloud Shell is a virtual machine that is loaded with development tools. It offers a persistent 5GB home directory and runs on the Google Cloud. Cloud Shell provides command-line access to your Google Cloud resources.
- Click Activate Cloud Shell at the top of the Google Cloud console.
When you are connected, you are already authenticated, and the project is set to your Project_ID,
gcloud
is the command-line tool for Google Cloud. It comes pre-installed on Cloud Shell and supports tab-completion.
- (Optional) You can list the active account name with this command:
- Click Authorize.
Output:
- (Optional) You can list the project ID with this command:
Output:
gcloud
, in Google Cloud, refer to the gcloud CLI overview guide.
Task 1. Create a new repository
- Start a new session in Cloud Shell and run the following command to create a new Cloud Source Repository named
REPO_DEMO
:
You can safely ignore any billing warnings for creating repositories.
Test Completed Task
Click Check my progress to verify your performed task. If you have created a new repository you will see an assessment score.
Task 2. Clone the new repository into your Cloud Shell session
- Clone the contents of your new Cloud Source Repository to a local repo in your Cloud Shell session:
The gcloud source repos clone
command adds Cloud Source Repositories as a remote named origin and clones it into a local Git repository.
Task 3. Push to the Cloud Source Repository
- Go into the local repository you created:
- Run the following command to create a file
myfile.txt
in your local repository:
- Commit the file using the following Git commands:
Your output should resemble the following:
- Once you've committed code to the local repository, add its contents to Cloud Source Repositories using the
git push
command:
- Git pushes the sample application files from the
master
branch to theorigin
remote:
Task 4. Browse files in the Google Cloud Source Repository
Use the Google Cloud Source Repositories source code browser to view repository files. You can filter your view to focus on a specific branch, tag, or comment.
- Run the command to list the Repositories:
Click on the URL
to browse the sample files you pushed to the repository. The console shows the files in the master branch at the most recent commit.
Task 5. View a file in the Google Cloud repository
-
From the Console, open the Navigation menu () > View All Products. Under CI/CD section, click Source Repositories.
-
Click
REPO_DEMO
>myfile.txt
to view the file's contents in the source code browser.
Task 6. Test your understanding
Below are multiple-choice questions to reinforce your understanding of this lab's concepts. Answer them to the best of your abilities.
Congratulations!
Congratulations! In this lab, you created a new repository, added a Google Source Repository as a remote, and pushed the contents of the local repository. You used the source browser included in Source Repositories to view your repository files from within the Cloud Console.
Next steps / Learn more
This lab is also part of a series of labs called Qwik Starts. These labs are designed to give you a little taste of the many features available with Google Cloud. Search for "Qwik Starts" in the Google Cloud Skills Boost catalog to find the next lab you'd like to take!
Google Cloud training and certification
...helps you make the most of Google Cloud technologies. Our classes include technical skills and best practices to help you get up to speed quickly and continue your learning journey. We offer fundamental to advanced level training, with on-demand, live, and virtual options to suit your busy schedule. Certifications help you validate and prove your skill and expertise in Google Cloud technologies.
Manual Last Updated July 19, 2024
Lab Last Tested July 19, 2024
Copyright 2024 Google LLC All rights reserved. Google and the Google logo are trademarks of Google LLC. All other company and product names may be trademarks of the respective companies with which they are associated.