News

You can use these outputs to trigger other Actions in your Workflow run based on the result of git-auto-commit-action.. changes_detected: Returns either "true" or "false" if the repository was dirty ...
This pre-commit hook transforms your Git commit messages into Jira smart commits. If your branch name contains a Jira issue key such as ABC-123, the hook will automatically format your commit message ...
git add . git commit -m "Added changes in feature1" In this example, we have used git add . instead of git add README.md git add . stages all changed files, while git add README.md stages only the ...
git add . git commit -m "Added index.html in method1 branch" Now this new file, index.html, exists in the method1 branch (not in the main branch). To push these changes to GitHub, we’ll execute ...