You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
3 years ago
|
npm i -g git-mob
|
||
|
cat <<-EOF > ~/.git-coauthors
|
||
|
{
|
||
|
"coauthors": {
|
||
|
"sig": {
|
||
|
"name": "sigonasr2",
|
||
|
"email": "sigonasr2@gmail.com"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
EOF
|
||
|
git mob sig
|
||
|
cat <<-EOF > .git/hooks/prepare-commit-msg
|
||
|
#!/usr/bin/env node
|
||
|
let exec = require('child_process').exec,
|
||
|
fs = require('fs');
|
||
|
const commitMessage = process.argv[2];
|
||
|
// expect .git/COMMIT_EDITMSG
|
||
|
if(/COMMIT_EDITMSG/g.test(commitMessage)){
|
||
|
let contents = "";
|
||
|
exec("git mob-print",
|
||
|
function (err, stdout) {
|
||
|
if(err) {
|
||
|
process.exit(0);
|
||
|
}
|
||
|
// opens .git/COMMIT_EDITMSG
|
||
|
contents = fs.readFileSync(commitMessage);
|
||
|
if(contents.indexOf(stdout.trim()) !== -1) {
|
||
|
process.exit(0);
|
||
|
}
|
||
|
const commentPos = contents.indexOf('# ');
|
||
|
const gitMessage = contents.slice(0, commentPos);
|
||
|
const gitComments = contents.slice(commentPos)
|
||
|
fs.writeFileSync(commitMessage, gitMessage + stdout + gitComments);
|
||
|
process.exit(0);
|
||
|
});
|
||
|
}
|
||
|
EOF
|
||
|
chmod +x .git/hooks/prepare-commit-msg
|
||
|
echo "Environment is setup!"
|