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
Copy file name to clipboardExpand all lines: hub/package-manager/package/repository.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,15 +82,15 @@ The `PackageIdentifier` and the `PackageVersion` values in the manifest must mat
82
82
83
83
Thus to set up sparse checkout for all manifests of a publisher, you'd type:
84
84
85
-
1. If you are using Git version 2.37.0 or newer, run the following command to set up spare checkout for your folder.
85
+
1. If you are using Git version 2.37.0 or newer, run the following command to set up sparse checkout for your folder.
86
86
87
87
```powershell
88
88
git sparse-checkout set manifests\<letter>\<publisher>
89
89
```
90
90
91
91
If you are using an older version of Git, refer to the [Git documentation](https://git-scm.com/docs/git-sparse-checkout) for how to set up sparse checkout for your local repository.
92
92
93
-
Note that the above command will override all current sparse checkout settings and set it up for only that one folder, refer to the [Git documentation](https://git-scm.com/docs/git-sparse-checkout) for setting up sparce checkout with multiple folders.
93
+
Note that the above command will override all current sparse checkout settings and set it up for only that one folder, refer to the [Git documentation](https://git-scm.com/docs/git-sparse-checkout) for setting up sparse checkout with multiple folders.
94
94
95
95
### Step 5: Checkout the repository
96
96
@@ -100,18 +100,18 @@ You can now apply the sparse checkout settings by running.
100
100
git checkout
101
101
```
102
102
103
-
If you are entering multiple submissions, create a branch instead of a fork. We currently allow only one manifest file per submission.
103
+
If you are entering multiple submissions, create a branch instead of a fork. We currently allow only one manifest file per submission.
104
104
105
105
```powershell
106
106
git checkout -b <branch-name>
107
107
```
108
108
109
-
### Step 5: Add your manifest to the local repository
109
+
### Step 6: Add your manifest to the local repository
110
110
111
-
Add your files into the folder explained in step 3.
111
+
Add your files into the folder following folder (format explained in step 4):
### Step 5: Submit your manifest to the remote repository
114
+
### Step 7: Submit your manifest to the remote repository
115
115
116
116
You're now ready to push your new manifest to the remote repository.
117
117
@@ -127,7 +127,7 @@ You're now ready to push your new manifest to the remote repository.
127
127
git push
128
128
```
129
129
130
-
### Step 6: Create a pull request
130
+
### Step 8: Create a pull request
131
131
132
132
After you push your changes, return to [https://github.com/microsoft/winget-pkgs](https://github.com/microsoft/winget-pkgs) and create a pull request to merge your fork or branch to the main branch.
0 commit comments