Skip to content
This repository was archived by the owner on Nov 4, 2022. It is now read-only.

Commit a08de4d

Browse files
Thomas Fritzferdingler
authored andcommitted
Streaminline guide with the updated Java guideline
1 parent fde8fc2 commit a08de4d

File tree

2 files changed

+3
-14
lines changed

2 files changed

+3
-14
lines changed

workshop/content/javascript/buildpipe/credhelper/_index.en.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,7 @@ weight = 10
66

77
One of the cool things about CodeCommit is the support for IAM authentication. And if you are running this workshop from a Cloud9 workspace, you can leverage the fact that your terminal is already pre-authenticated with valid AWS credentials.
88

9-
Run the following commands from your terminal:
10-
11-
```
12-
git config --global credential.helper '!aws codecommit credential-helper $@'
13-
git config --global credential.UseHttpPath true
14-
```
15-
16-
Now configure the git client with username and email, so your commits have an author defined.
9+
Configure the git client with username and email, so your commits have an author defined.
1710

1811
```
1912
git config --global user.name "Replace with your name"

workshop/content/javascript/buildpipe/gitpush/_index.en.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,10 @@ Example:
3333
![GitCommit](/images/screenshot-git-commit.png)
3434

3535
### Push the code
36-
Add your CodeCommit repository URL as a _remote_ on your local git project. This is the `cloneUrlHttp` value that you got back after creating the repository in Step 1 of this chapter.
37-
38-
{{% notice tip %}}
39-
If you can't find the CodeCommit repository URL, you can find it by running this command: `aws codecommit get-repository --repository-name sam-app`.
40-
{{% /notice %}}
36+
Add your CodeCommit repository URL as a _remote_ on your local git project.
4137

4238
```
43-
git remote add origin REPLACE_WITH_HTTP_CLONE_URL
39+
git remote add origin codecommit://sam-app
4440
```
4541

4642
{{% notice tip %}}

0 commit comments

Comments
 (0)