Shortcuts to recurrent Git commands
The tests
directory is a Git subtree created with the
following commands:
git remote add tests [email protected]:nextflow-io/tests.git
git subtree add --squash --prefix=tests/ tests integration
To pull changes from the tests repo use this command:
git subtree pull --squash --prefix=tests/ tests integration
To push changes to to tests repo use this command:
git subtree push --prefix=tests/ tests integration
Read more here.