Docker-DCO-1.1-Signed-off-by: Andrew Page <admwiggin@gmail.com> (github: tianon)
| ... | ... |
@@ -6,6 +6,21 @@ So you're in charge of a Docker release? Cool. Here's what to do. |
| 6 | 6 |
If your experience deviates from this document, please document the changes |
| 7 | 7 |
to keep it up-to-date. |
| 8 | 8 |
|
| 9 |
+It is important to note that this document assumes that the git remote in your |
|
| 10 |
+repository that corresponds to "https://github.com/dotcloud/docker" is named |
|
| 11 |
+"origin". If yours is not (for example, if you've chosen to name it "upstream" |
|
| 12 |
+or something similar instead), be sure to adjust the listed snippets for your |
|
| 13 |
+local environment accordingly. If you are not sure what your upstream remote is |
|
| 14 |
+named, use a command like `git remote -v` to find out. |
|
| 15 |
+ |
|
| 16 |
+If you don't have an upstream remote, you can add one easily using something |
|
| 17 |
+like: |
|
| 18 |
+ |
|
| 19 |
+```bash |
|
| 20 |
+git remote add origin https://github.com/dotcloud/docker.git |
|
| 21 |
+git remote add YOURUSER git@github.com:YOURUSER/docker.git |
|
| 22 |
+``` |
|
| 23 |
+ |
|
| 9 | 24 |
### 1. Pull from master and create a release branch |
| 10 | 25 |
|
| 11 | 26 |
```bash |