From e16f98e766b68d607048c8f638c419c1c3ef4681 Mon Sep 17 00:00:00 2001 From: Xianglong Wang Date: Tue, 17 Dec 2019 13:35:16 -0600 Subject: [PATCH] Change base repo update to use a single line --- CONTRIBUTING.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e07b3484b..6cd20ec51 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -84,9 +84,6 @@ If you write a new end to end (e2e) test, or change behaviors that affect e2e te Your contribution of the base repo will not be automatically reflected in the main repo after your PR is merged. Instead, please update the ```base``` submodule in your fork of the main repo as follows: ```bash -$ cd kubernetes/base -$ git fetch origin -$ git checkout origin/master # assuming your change has been merged into the latest python-base MASTER -$ cd ../.. +$ git submodule update --remote ``` You may now add a release note to [CHANGELOG.md](CHANGELOG.md) if needed and then commit and push to your fork. You can now send a PR to this main repo to complete your contribution.