8000 Tags · ghcli/gh-commit · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: ghcli/gh-commit

Tags

v1.0.4

Toggle v1.0.4's commit message

Verified

This commit was signed with the committer’s verified signature.
feat(README): Add link to OpenAI API key guide

The changes involved a new feature, specifically the addition of a helpful link to a step-by-step guide on how to obtain an OpenAI API key on the README file.

It enhances the documentation by providing a resource for users to follow if they're unsure on how to obtain their API keys from OpenAI. It makes the whole process of starting with the API a lot smoother and easier to understand. 📚 🔑

v1.0.3

Toggle v1.0.3's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Added more anchors for easier navigation

v1.0.2

Toggle v1.0.2's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
 An anchor link has been added to the "Features" section of the READM…

…E File.

v1.0.1

Toggle v1.0.1's commit message

Verified

This commit was signed with the committer’s verified signature.
**fix: Correct shell expansion in Git auto-commit alias**

The code change made here is fixing an issue with shell expansion in the GitHub auto-commit alias. The issue was that the command substitution `$(gh commit)` was getting prematurely evaluated which resulted in errors.

The fix replaced it with `"\$(gh commit)"`. By escaping the `$` symbol with a backslash (`\`), the command substitution will be evaluated only when the alias is used, not when it is defined. This allows the proper function of the alias `auto-commit` within the .bashrc file. Now, the `auto-commit` Git alias works as expected, correctly executing the `gh commit` command when used. 📝🐛💻

v1.0.0

Toggle v1.0.0's commit message

Verified

This commit was signed with the committer’s verified signature.
**fix: Correct shell expansion in Git auto-commit alias**

The code change made here is fixing an issue with shell expansion in the GitHub auto-commit alias. The issue was that the command substitution `$(gh commit)` was getting prematurely evaluated which resulted in errors.

The fix replaced it with `"\$(gh commit)"`. By escaping the `$` symbol with a backslash (`\`), the command substitution will be evaluated only when the alias is used, not when it is defined. This allows the proper function of the alias `auto-commit` within the .bashrc file. Now, the `auto-commit` Git alias works as expected, correctly executing the `gh commit` command when used. 📝🐛💻
0