@oscarmoralex/push-cli
Version:
This application will help you to do : git add . & git commit & git push with a single instruction
15 lines (12 loc) • 317 B
JavaScript
import clearConsole from 'clear-any-console';
export const welcome = () => {
clearConsole();
console.log(
boxen(` 💻 ${cyan(`Send your commits & push faster Like a Boss`)} 😎 `, {
tagLine: 'by MoralexCode',
title: 'Git Commit & Push',
titleAlignment: 'center',
borderStyle: 'double'
})
);
};