Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 664 Bytes

GIT-README.md

File metadata and controls

23 lines (12 loc) · 664 Bytes

GIT README

Shortcuts to recurrent Git commands

Subtree

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.