You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Important:** All changes will be committed to this branch as you work. This allows for proper review via Pull Request.
44
46
45
-
## Step 2: Clone Upstream Repository
47
+
## Step 2: Update Copilot CLI
48
+
49
+
Update the locally installed GitHub Copilot CLI to the latest version:
50
+
51
+
```bash
52
+
copilot update
53
+
```
54
+
55
+
After updating, capture the new version and update the README.md to reflect the minimum version requirement:
56
+
57
+
```bash
58
+
# Get the current version
59
+
CLI_VERSION=$(copilot --version | head -n 1 | awk '{print $NF}')
60
+
echo"Updated Copilot CLI to version: $CLI_VERSION"
61
+
```
62
+
63
+
Update the Requirements section in `README.md` to specify the minimum CLI version requirement. Locate the line mentioning "GitHub Copilot CLI installed" and update it to include the version information.
64
+
65
+
Commit this change before proceeding:
66
+
67
+
```bash
68
+
git add README.md
69
+
git commit -m "Update Copilot CLI minimum version requirement to $CLI_VERSION"
70
+
```
71
+
72
+
## Step 3: Clone Upstream Repository
46
73
47
74
Clone the official Copilot SDK repository into a temporary folder:
0 commit comments