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
> * Unzip & Rename the `git-flow-next` to `git-flow`
109
+
> * Copy to `$GIT_INSTALL_DIR/cmd` or just add its path to you `PATH` directly
110
+
89
111
For **macOS** users:
90
112
91
113
* Thanks [@ybeapps](https://github.com/ybeapps) for making `SourceGit` available on `Homebrew`. You can simply install it with following command:
@@ -126,7 +148,7 @@ For **Linux** users:
126
148
127
149
If your distribution isn't using `dnf`, please refer to the documentation of your distribution on how to add an `rpm` repository.
128
150
*`AppImage` files can be found on [AppImage hub](https://appimage.github.io/SourceGit/), `xdg-open` (`xdg-utils`) must be installed to support open native file manager.
129
-
* Make sure [git-credential-manager](https://github.com/git-ecosystem/git-credential-manager/releases) is installed on your Linux.
151
+
* Make sure [git-credential-manager](https://github.com/git-ecosystem/git-credential-manager/releases)or [git-credential-libsecret](https://pkgs.org/search/?q=git-credential-libsecret)is installed on your Linux.
130
152
* Maybe you need to set environment variable `AVALONIA_SCREEN_SCALE_FACTORS`. See https://github.com/AvaloniaUI/Avalonia/wiki/Configuring-X11-per-monitor-DPI.
131
153
* If you can NOT type accented characters, such as `ê`, `ó`, try to set the environment variable `AVALONIA_IM_MODULE` to `none`.
132
154
@@ -155,7 +177,7 @@ This app supports open repository in external tools listed in the table below.
155
177
| Cursor | YES | YES | YES |
156
178
| Fleet | YES | YES | YES |
157
179
| Sublime Text | YES | YES | YES |
158
-
| Zed |NO | YES | YES |
180
+
| Zed |YES| YES | YES |
159
181
| Visual Studio | YES | NO | NO |
160
182
161
183
> [!NOTE]
@@ -172,19 +194,26 @@ This app supports open repository in external tools listed in the table below.
172
194
> [!NOTE]
173
195
> This app also supports a lot of `JetBrains` IDEs, installing `JetBrains Toolbox` will help this app to find them.
174
196
175
-
## Screenshots
176
-
177
-
* Dark Theme
178
-
179
-

180
-
181
-
* Light Theme
182
-
183
-

197
+
## Conventional Commit Helper
184
198
185
-
* Custom
199
+
You can define your own conventional commit types (per-repository) by following steps:
186
200
187
-
You can find custom themes from [sourcegit-theme](https://github.com/sourcegit-scm/sourcegit-theme.git). And welcome to share your own themes.
201
+
1. Create a json file with your own conventional commit type definitions. For example:
202
+
```json
203
+
[
204
+
{
205
+
"Name": "New Feature",
206
+
"Type": "Feature",
207
+
"Description": "Adding a new feature"
208
+
},
209
+
{
210
+
"Name": "Bug Fixes",
211
+
"Type": "Fix",
212
+
"Description": "Fixing a bug"
213
+
}
214
+
]
215
+
```
216
+
2. Configure the `Conventional Commit Types` in repository configuration window.
0 commit comments