You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Merge the publish-3.9 branch, which will have been created by the release tool, into the pure-docker release branch. Default to taking the remote changes.
81
+
# Merge the publish-3.9 branch, which will have been created by the release tool, into the pure-docker release branch. Default to taking the remote changes. Note that "theirs" is a Git term, not a placeholder.
82
82
git merge publish-3.9 -X theirs
83
83
84
84
# Reset to previous commit so we can manually inspect ALL changes - we want to create multiple commits instead of keeping a single merge commit
85
85
git reset HEAD~
86
86
87
87
# Show which files may have been deleted, etc.
88
88
git status
89
-
90
89
```
91
90
91
+
While committing in next steps, you will run into two merge conflicts:
92
+
93
+
- Do not commit `deploy-caddy.sh` or changes related to it, as `deploy-apache.sh` is used here.
94
+
- The `.prettierignore` should contain the following lines:
95
+
96
+
```
97
+
.github/
98
+
*.md
99
+
rootfs/etc/docker/daemon.json
100
+
```
101
+
92
102
At this point you should evaluate the `git status` output as well as all the changes in your working git directory. You need to ensure the following happens:
93
103
94
104
1. Files that were shown as deleted in the `git status` output get deleted in the relevant commit.
@@ -98,22 +108,10 @@ At this point you should evaluate the `git status` output as well as all the cha
98
108
- Do not include `docker-compose/` changes in this commit, those are irrelevant to pure-docker users.
99
109
- Double check `pure-docker/deploy-pgsql.sh` file and make sure it has the correct image sha. It should look something like `index.docker.io/sourcegraph/postgres-12.6-alpine:3.36.3@sha256:<hash>`
100
110
- `git commit -m 'upgrade to v3.9.0'`
101
-
102
-
During this process you will run into two merge conflicts:
103
-
104
-
- Do not commit: `deploy-caddy.sh` or changes related to it, as `deploy-apache.sh` is used here.
Check buildkite for the branch after pushing it, e.g. at https://github.com/sourcegraph/deploy-sourcegraph-docker/commits/3.19-customer-replica
119
117
@@ -151,9 +149,19 @@ git reset HEAD~
151
149
152
150
# Show which files may have been deleted, etc.
153
151
git status
154
-
155
152
```
156
153
154
+
While committing in next steps, you will run into two merge conflicts:
155
+
156
+
- Do not commit `deploy-caddy.sh` or changes related to it, as `deploy-apache.sh` is used here.
157
+
- The `.prettierignore` should contain the following lines:
158
+
159
+
```
160
+
.github/
161
+
*.md
162
+
rootfs/etc/docker/daemon.json
163
+
```
164
+
157
165
At this point you should evaluate the `git status` output as well as all the changes in your working git directory. You need to ensure the following happens:
158
166
159
167
1. Files that were shown as deleted in the `git status` output get deleted in the relevant commit.
@@ -163,22 +171,10 @@ At this point you should evaluate the `git status` output as well as all the cha
163
171
- Do not include `docker-compose/` changes in this commit, those are irrelevant to pure-docker users.
164
172
- Double check `pure-docker/deploy-pgsql.sh` file and make sure it has the correct image sha. It should look something like `index.docker.io/sourcegraph/postgres-12.6-alpine:3.36.3@sha256:<hash>`
165
173
- `git commit -m 'upgrade to v3.8.1'`
166
-
167
-
During this process you will run into two merge conflicts:
168
-
169
-
- Do not commit: `deploy-caddy.sh` or changes related to it, as `deploy-apache.sh` is used here.
0 commit comments