Skip to content

Commit e6d34eb

Browse files
authored
Merge pull request #108372 from DanteMustCode/patch-2
reorder steps to avoid go get error
2 parents 53e1933 + 4509382 commit e6d34eb

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

articles/storage/blobs/storage-quickstart-blobs-go.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,30 +28,30 @@ Get started with the Azure Blob Storage client library for Go to manage blobs an
2828

2929
This section walks you through preparing a project to work with the Azure Blob Storage client library for Go.
3030

31-
### Install the packages
31+
### Download the sample application
3232

33-
To work with blob and container resources in a storage account, install the [azblob](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/) package using the following command:
33+
The [sample application](https://github.com/Azure-Samples/storage-blobs-go-quickstart.git) used in this quickstart is a basic Go application.
3434

35-
```console
36-
go get github.com/Azure/azure-sdk-for-go/sdk/storage/azblob
37-
```
38-
To authenticate with Azure Active Directory (recommended), install the [azidentity](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azidentity) module using the following command:
35+
Use [git](https://git-scm.com/) to download a copy of the application to your development environment.
3936

4037
```console
41-
go get github.com/Azure/azure-sdk-for-go/sdk/azidentity
38+
git clone https://github.com/Azure-Samples/storage-blobs-go-quickstart
4239
```
4340

44-
### Download the sample application
41+
This command clones the repository to your local git folder. To open the Go sample for Blob Storage, look for the file named `storage-quickstart.go`.
4542

46-
The [sample application](https://github.com/Azure-Samples/storage-blobs-go-quickstart.git) used in this quickstart is a basic Go application.
43+
### Install the packages
4744

48-
Use [git](https://git-scm.com/) to download a copy of the application to your development environment.
45+
To work with blob and container resources in a storage account, install the [azblob](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/) package using the following command:
4946

5047
```console
51-
git clone https://github.com/Azure-Samples/storage-blobs-go-quickstart
48+
go get github.com/Azure/azure-sdk-for-go/sdk/storage/azblob
5249
```
50+
To authenticate with Azure Active Directory (recommended), install the [azidentity](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azidentity) module using the following command:
5351

54-
This command clones the repository to your local git folder. To open the Go sample for Blob Storage, look for the file named `storage-quickstart.go`.
52+
```console
53+
go get github.com/Azure/azure-sdk-for-go/sdk/azidentity
54+
```
5555

5656
## Authenticate to Azure and authorize access to blob data
5757

0 commit comments

Comments
 (0)