From 89a7d6baf2e56634314fa8e9c859aae152648d27 Mon Sep 17 00:00:00 2001 From: Scott Hutchinson Date: Sat, 28 Nov 2020 13:21:11 -0800 Subject: [PATCH] Added missing command to add upstream to fork (#10558) --- DEVGUIDE.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/DEVGUIDE.md b/DEVGUIDE.md index f1ebb48ae09c..031d0d339bd6 100644 --- a/DEVGUIDE.md +++ b/DEVGUIDE.md @@ -10,6 +10,11 @@ We recommend the following overall workflow when developing for this repository: * Always work in your fork * Always keep your fork up to date +Before updating your fork, run this command: +``` +git remote add upstream https://github.com/dotnet/fsharp.git +``` + This will make management of multiple forks and your own work easier over time. ## Updating your fork