Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 829 Bytes

GIT-README.md

File metadata and controls

33 lines (19 loc) · 829 Bytes

GIT README

Shortcuts to recurrent Git commands

Sync remote fork

git fetch public
git checkout master
git merge public/master

Read more here.

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.