git-commit-file (gcf)
Git add and commit a single file in a single command
Introduction
git-commit-file
adds and commits a single file in a single command. No other files will ever be committed.
It can be installed either globally (for CLI usage) or locally (for usage in Node code).
Where a filename is specified git-commit-file
attempts to commit that file only.
Where no filename is specified git-commit-file
defaults to looking for webpack.config.js
or webpack.config.json
If found it attempts to commit the file referenced by output.filename
in your webpack config.
You don't like the default behaviour? Fine, always specify a file and git-commit-file
will never fallback to the default.
Global CLI Usage
npm install -g git-commit-file
Once installed you have access to the git-commit-file
CLI command. This command has two aliases, namely gcf
and gitcommitfile
gcf README.md # add and commit README.mdgcf -m "my message" README.md # add and commit README.md with custom commit messagegcf ./myFile.js # add and commit myFile.jsgcf myDir/myFile.js # add and commit myDir/myFile.jsgcf ./myDir/myFile.js # add and commit myDir/myFile.jsgcf # add and commit the file referenced by `output.filename` in your webpack config
git-commit-file
exits with code 0 if the file was successfully committed else it exits with code 1
The default commit message is Updated <filename>
You can override this behaviour with the -m
or --message
flag.
Local usage
npm install --save git-commit-file
const gcf = let exitCodeexitCode = // add and commit README.mdexitCode = // add and commit README.md with custom commit messageexitCode = // add and commit myFile.jsexitCode = // add and commit myDir/myFile.jsexitCode = // add and commit myDir/myFile.jsexitCode = // add and commit the file referenced by `output.filename` in your webpack config
With a local install git-commit-file
can be accessed via package.json
scripts:
And executed with npm run commit1
or npm run commit2
and so forth.
Author says
God made a commitment to loving you by sending his only Son Jesus to die on the cross for your sins in your place.
For God so loved the world, that he gave his only Son, that whoever believes in him should not perish but have eternal life. For God did not send his Son into the world to condemn the world, but in order that the world might be saved through him. Whoever believes in him is not condemned, but whoever does not believe is condemned already, because he has not believed in the name of the only Son of God.
Now it's your turn to make a commitment to God. Shake His hand, accept His gift (he gave his only Son) and follow Him.
Remember ... it's a gift, you can't earn it. Take it and thank Him :)