From 17bbbe53e6d79bff231e1f79163c2aacbde77d2b Mon Sep 17 00:00:00 2001 From: Vitaliy Potyarkin Date: Wed, 11 Sep 2024 12:42:44 +0300 Subject: [PATCH] [#168] Update obsolete URLs Signed-off-by: Vitaliy Potyarkin --- CONTRIBUTING.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fc55a12..8ef20ef 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,8 +3,8 @@ First, thank you for contributing! We love and encourage pull requests from everyone. Please follow the guidelines: -- Check the open [issues](https://github.com/TrueCloudLab/xk6-frostfs/issues) and - [pull requests](https://github.com/TrueCloudLab/xk6-frostfs/pulls) for existing +- Check the open [issues](https://git.frostfs.info/TrueCloudLab/xk6-frostfs/issues) and + [pull requests](https://git.frostfs.info/TrueCloudLab/xk6-frostfs/pulls) for existing discussions. - Open an issue first, to discuss a new feature or enhancement. @@ -28,18 +28,18 @@ send a pull request. We encourage pull requests to discuss code changes. Here are the steps in details: ### Set up your GitHub Repository -Fork [xk6-frostfs upstream](https://github.com/TrueCloudLab/xk6-frostfs/fork) source +Fork [xk6-frostfs upstream](https://git.frostfs.info/TrueCloudLab/xk6-frostfs/fork) source repository to your own personal repository. Copy the URL of your fork (you will need it for the `git clone` command below). ```sh -$ git clone https://github.com/TrueCloudLab/xk6-frostfs +$ git clone https://git.frostfs.info/TrueCloudLab/xk6-frostfs ``` ### Set up git remote as ``upstream`` ```sh $ cd xk6-frostfs -$ git remote add upstream https://github.com/TrueCloudLab/xk6-frostfs +$ git remote add upstream https://git.frostfs.info/TrueCloudLab/xk6-frostfs $ git fetch upstream $ git merge upstream/master ...