aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexSm <alex@ydb.tech>2024-01-02 15:40:29 +0100
committerGitHub <noreply@github.com>2024-01-02 15:40:29 +0100
commit85794252b051f2738871ae09ffaa062d08caca23 (patch)
tree45a510bd3acb6631bde9cd3cede7e28b27f7c41c
parentb38baa94e2fc370a336b6a8e43073ae1d76d3ef0 (diff)
downloadydb-85794252b051f2738871ae09ffaa062d08caca23.tar.gz
Fix rebase in docs (#825)
-rw-r--r--ydb/docs/en/core/development/suggest-change.md4
-rw-r--r--ydb/docs/ru/core/development/suggest-change.md4
2 files changed, 2 insertions, 6 deletions
diff --git a/ydb/docs/en/core/development/suggest-change.md b/ydb/docs/en/core/development/suggest-change.md
index 1deacf51b5..4e66fe36fe 100644
--- a/ydb/docs/en/core/development/suggest-change.md
+++ b/ydb/docs/en/core/development/suggest-change.md
@@ -237,8 +237,6 @@ If you have conflicts on the Pull Request, you may rebase your changes on top of
```
# Assuming your active branch is your development branch
gh repo sync your_github_login/ydb -s ydb-platform/ydb
-git checkout main
-git pull
-git checkout <your_dev_branch>
+git fetch origin main:main
git rebase main
```
diff --git a/ydb/docs/ru/core/development/suggest-change.md b/ydb/docs/ru/core/development/suggest-change.md
index 83e2327400..4c98febe8b 100644
--- a/ydb/docs/ru/core/development/suggest-change.md
+++ b/ydb/docs/ru/core/development/suggest-change.md
@@ -239,8 +239,6 @@ Pull Request может быть замержен после получения
```
# Предполагается, что ваша активная ветка является вашей веткой разработки
gh repo sync your_github_login/ydb -s ydb-platform/ydb
-git checkout main
-git pull
-git checkout <your_dev_branch>
+git fetch origin main:main
git rebase main
``` \ No newline at end of file