Import a package into the monorepo with commit history
npm install @0x-lerna-fork/import@0x-lerna-fork/import> Import a package into the monorepo with commit history
Install lerna for access to the lerna CLI.
``sh`
$ lerna import
Import the package at , with commit history,packages/
into . Original commit authors, dates and messages
are preserved. Commits are applied to the current branch.
This is useful for gathering pre-existing standalone packages into a Lerna
repo. Each commit is modified to make changes relative to the package
directory. So, for example, the commit that added package.json willpackages/
instead add .
_Note_: If you're importing an external repository on a new lerna repository, then do remember to have at least one commit.
`bashGetting started with Lerna
$ git init lerna-repo && cd lerna-repo
$ npx lerna init
$ npm install
Options
$3
When importing repositories with merge commits with conflicts, the import command will fail trying to apply all commits. The user can use this flag to ask for import of "flat" history, i.e. with each merge commit as a single change the merge introduced.
`
$ lerna import ~/Product --flatten
`$3
When importing repositories, you can specify the destination directory by the directory listed in lerna.json.
`
$ lerna import ~/Product --dest=utilities
`$3
Each git commit has an author and a committer (with a separate date for each). Usually they're the same person (and date), but since
lerna import re-creates each commit from the external repository, the committer becomes the current git user (and date). This is technically correct, but may be undesireable, for example, on Github, which displays both the author and committer if they're different people, leading to potentially confusing history/blames on imported commits.Enabling this option preserves the original committer (and commit date) to avoid such issues.
`
$ lerna import ~/Product --preserve-commit
``