
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
commit-from
Advanced tools
commit-fromCreate a commit message from ticket details from issue sources.
Because:
Currently support issue sources:
Install node.js 4+.
npm install -g commit-from
Configuration is provided from the .cfconfig file in the user's home directory.
[github]
issuePrefix = issue-
template = ~/.gittemplates/github.txt
timeout = 75000
[jira]
apiVersion = 2
host = jira.myhost.org
password = SprSrsPsswrd1234!@#$
protocol = https
strictSSL = true
template = ~/.gittemplates/jira.txt
timeout = 75000
username = someuser
commit-from -h
# git config file
[alias]
# current branch name
current-branch=!git rev-parse --abbrev-ref HEAD
cb=!git current-branch
# commit with a message generated from a supported issue source
commit-from = "!f() { git commit -e -m \"$(CB=$(git cb); if [[ $(dirname "${CB}") = "." ]]; then echo ""; else commit-from $1 $(basename "${CB}") ${@:2}; fi)\"; }; f"
cf = !git commit-from
# commit with a message generated from GitHub
commit-from-github = !git commit-from github
cfg = !git commit-from-github
# commit all with a message generated from GitHub
commit-all-from-github = "!f() { git add -A && git cfg ${@}; }; f"
cafg = !git commit-all-from-github
# commit with a message generated from Jira
commit-from-jira = !git commit-from jira
cfj = !git commit-from-jira
# commit all with a message generated from Jira
commit-all-from-jira = "!f() { git add -A && git cfj ${@}; }; f"
cafj = !git commit-all-from-jira
git add <files>
git cfg # From GitHub
git cfj # From Jira
# or commit all the things
git cafg
git cafj
# use a custom template
git cfg -t /path/to/template.txt
git cfj -t /path/to/template.txt
FAQs
Create a commit message from ticket details from issue sources.
The npm package commit-from receives a total of 16 weekly downloads. As such, commit-from popularity was classified as not popular.
We found that commit-from demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.