Skip to content

Commit a8b2e1e

Browse files
authored
Merge pull request #238 from spier/patch-2
[docs] Creating new patterns in the right folder
2 parents 34e3030 + 18bad16 commit a8b2e1e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

meta/technical-git-howto.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ $ git checkout <branchname>
8080

8181
Let's imagine we want to create a new pattern related to the activities of the
8282
Ewoks - they gave up hunting for some reason. We should choose some initial
83-
name for this pattern file. We will use 'ewoks-do-not-hunt.md'.
83+
name for this pattern file. We will use `ewoks-do-not-hunt.md`.
8484

8585
```
8686
$ git checkout -b pattern/ewoks-do-not-hunt
87-
$ touch ewoks-do-not-hunt.md
87+
$ touch patterns/1-initial/ewoks-do-not-hunt.md
8888
```
8989

9090
You can fill your [markdown](markdown-info.md) file with the [pattern template text](pattern-template.md) and begin to fill it in with your pattern.
@@ -93,7 +93,7 @@ Once our pattern file is ready to go, we need to add the file to the repo and
9393
commit that change to our new branch.
9494

9595
```
96-
$ git add ewoks-do-not-hunt.md
96+
$ git add patterns/1-initial/ewoks-do-not-hunt.md
9797
$ git commit -m "Inner Source Pattern to deal with Ewoks that do not hunt"
9898
```
9999

0 commit comments

Comments
 (0)