Skip to content

Commit c32db0f

Browse files
Coventions Guide: rename transition branches develop-black and develop-white respectively
1 parent a92196d commit c32db0f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/guide/Guide_CLIMADA_conventions.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -212,12 +212,12 @@
212212
" git fetch -t\n",
213213
" ```\n",
214214
" \n",
215-
"2. Switch to your feature branch and merge `develop/white` (in order to get the latest changes in `develop` before switching to `black`):\n",
215+
"2. Switch to your feature branch and merge `develop-white` (in order to get the latest changes in `develop` before switching to `black`):\n",
216216
"\n",
217217
" ```shell\n",
218218
" git checkout YOUR_BRANCH\n",
219219
" git pull\n",
220-
" git merge --no-ff develop/white\n",
220+
" git merge --no-ff develop-white\n",
221221
" ```\n",
222222
" If merge conflicts arise, resolve them and conclude the merge as instructed by Git.\n",
223223
" It also helps to check if the tests pass after the merge.\n",
@@ -236,10 +236,10 @@
236236
" git commit\n",
237237
" ```\n",
238238
" \n",
239-
"5. Now merge `develop/black`:\n",
239+
"5. Now merge `develop-black`:\n",
240240
"\n",
241241
" ```shell\n",
242-
" git merge --no-ff develop/black\n",
242+
" git merge --no-ff develop-black\n",
243243
" ```\n",
244244
" * If merge conflicts arise, resolve them and conclude the merge as instructed by Git.\n",
245245
" Most conflicts will probably be resolved by choosing \"Ours\" over \"Theirs\" or the \"Current Change\" over the \"Incoming Change\".\n",

0 commit comments

Comments
 (0)