1.0.7 • Published 3 years ago

git-upstream-template v1.0.7

Weekly downloads
6
License
MIT
Repository
github
Last release
3 years ago

git-upstream-template

Build Status Coverage Status TypeScript NPM Version License

Synchronize git templates generated by GitHub as if they were forks.

npx git-upstream-template <source-template-repo-url> <optional-branch-name>

on an child instance of a Github template repository will open up an interactive CLI where you can select from a list of updated commits that have been made after child instance creation. These will then be applied to the child template instance keeping changes and patches current.

All working directory changes will be stashed before any operations are made using git and popped once successfully completed. This is for your own peace-of-mind and protection. If any operation fails, simply use git stash pop to retrieve your cwd again.

Special treatment will be given to source commits with messages formatted: Bump <package> from <src_version> to <dst_version>. These commits will call yarn to update <package> to version <dst_version>.

Optional Branch Name

In order to support newly created repositories on GitHub you can pass an <optional-branch-name> in your CLI. All newly created GitHub repositories will have a default branch of main instead of master. For further information you can read here.