-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[README.md] Improve wording and denote source
- Loading branch information
Showing
1 changed file
with
13 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
# Sailfish QML | ||
Workplace repo for creating diff patches | ||
|
||
## How to manual? | ||
## How-to (fully manual)? | ||
- Fork repo or request addition to organization | ||
- Create branch named your patch name: | ||
`git checkout -b my-patch-name` | ||
- Create branch with your Patch name: `git checkout -b my-patch-name` | ||
- Apply changes | ||
- Create diff: | ||
`git diff master -- . ':!.github' > unified_diff.patch` | ||
- Publish it to Patchmanager web catalog! | ||
- Create diff: `git diff master -- . ':!.github' > unified_diff.patch` | ||
- Publish it on Patchmanager's Web Catalog! | ||
|
||
## How to automatic? | ||
## How-to (semi-automated)? | ||
- Fork repo or request addition to organization | ||
- Create branch named your patch name: | ||
`git checkout -b my-patch-name` | ||
- Create branch with your Patch name: `git checkout -b my-patch-name`<br /> | ||
Alternatively this can be done by GitHub's web-frontend. | ||
- Apply changes | ||
- You can copy additional files according to [pm2 guidelines](https://coderus.openrepos.net/pm2/usage/) to the 'patch' folder | ||
- You can copy additional files according to the [Patchmanager guidelines](https://coderus.openrepos.net/pm2/usage/) to the `patch` folder | ||
- Create pull request | ||
- Github CI will produce zip file for you | ||
- Publish it to Patchmanager web catalog! | ||
- A CI workflow of this GitHub repo will [produce a ZIP file for you](https://github.com/sailfishos-patches/sailfish-qml/actions) | ||
- Publish it on Patchmanager's Web Catalog! | ||
|
||
#### Side note | ||
The content of this repo was created by executing `find /usr -name '*.qml' -o -name '*.js'` as root on a freshly installed SailfishOS. |