Output commands to generate SDK version tag (#10022)

During SDK version updates, output the commands used to tag the repo
with the SDK version.
diff --git a/dev/tools/update_versions.dart b/dev/tools/update_versions.dart
index 4ff07ca..8f62bcc 100644
--- a/dev/tools/update_versions.dart
+++ b/dev/tools/update_versions.dart
@@ -4,6 +4,8 @@
 
 // Updates the version numbers of the Flutter repo.
 // Only tested on Linux.
+//
+// See: https://github.com/flutter/flutter/wiki/Release-process
 
 import 'dart:io';
 
@@ -91,6 +93,12 @@
   print('flutter package is now at version: $framework');
   print('flutter_test package is now at version: $test');
   print('flutter_driver package is now at version: $driver');
+
+  if (release) {
+    print('\nDuring the tagging step in the instructions, the commands will be:');
+    print('git tag $sdk');
+    print('git push upstream $sdk');
+  }
 }
 
 abstract class Version {