Skip to content

bullgit/best-practice-git

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

best-practice-git

Who really needs a git history. It just causes slower initial downloads of repos right?

Just use this technique to commit your changes.

Usage

npm run commit "who cares anyways"

Concept

shell

git add -A && git commit --amend -m "<MESSAGE>" && git push --force origin master

js

import child_process from 'child_process'
const [message = 'initial commit'] = process.argv.slice(2)
child_process.exec(
  `git add -A && git commit --amend -m "${message}" && git push --force origin master`,
  err => {
    if (err) {
      throw err;
    }
  }
)

About

always amend and --force push

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published