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: PROMPTS.md
+31Lines changed: 31 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -226,4 +226,35 @@ Our goal is to improve it thoroughly.
226
226
<task>
227
227
Raise the quality of this standalone page to a highly sophisticated and professional level and provide the updated code.
228
228
</task>
229
+
```
230
+
231
+
## Create commit messages
232
+
233
+
To copy changes to clipboard for pasting:
234
+
235
+
**Command line:**
236
+
```bash
237
+
git diff | pbcopy # macOS
238
+
git diff | clip # Windows
239
+
git diff | xclip # Linux
240
+
```
241
+
242
+
**IDEs:**
243
+
-**IntelliJ/WebStorm/PyCharm:** Open Commit panel → select files → right-click → "Copy as Patch to Clipboard"
244
+
-**VS Code:** Install Git Patch extension → right-click file in diff view → "Copy as Git Patch"
245
+
-**Visual Studio:** Team Explorer → Changes → right-click files → "Copy Change"
246
+
-**Eclipse:** Select changed files in Git Staging view → right-click → "Copy Patch to Clipboard"
247
+
248
+
**Prompt:**
249
+
```
250
+
Please write a concise but technical accurate commit message in the form of bullet points with lowercase first letters in a code block for the attached changes.
251
+
252
+
Requirements:
253
+
* Use backticks whenever appropriate
254
+
* Focus on major changes
255
+
* Use hyphens
256
+
* Avoid redundancy
257
+
* Use present tense and no conjugation
258
+
259
+
If you see any major errors or mistakes, please point them out.
0 commit comments