wildfly / wildfly-tck-runners

Test runners for executing various TCKs against a WildFly runtime
Apache License 2.0
1 stars 7 forks source link

Add jakartaredhat WildFly Core Profile tck runner source #56

Closed scottmarlow closed 1 year ago

scottmarlow commented 1 year ago

Merge of https://github.com/jakartaredhat/wf-core-tck-runner commits

Followed advice from https://stackoverflow.com/questions/37471740/how-to-copy-commits-from-one-git-repo-to-another (been a while since I did this):

git clone https://github.com/wildfly/wildfly-tck-runners.git new-repo cd new-repo git remote add old https://github.com/jakartaredhat/wf-core-tck-runner.git git remote update git log old/main last-commit-hash-from-old-repo = ad73e6919a35e9d8e56352e1382fe47489f78abe git merge --allow-unrelated-histories or git merge --allow-unrelated-histories ad73e6919a35e9d8e56352e1382fe47489f78abe git push origin main

bstansberry commented 1 year ago

Thanks @scottmarlow