Source moved to github

Nathan are you willing to do all changes using github’s pull request facility? Personally I did never used one and have no exp with it. Or you prefer to get write permission to anybody/somebody by adding ‘Collaborators’?


Cheers, Oleg

Thanks to help from Oleg, the liquibase source is now officially hosted at https://github.com/liquibase/liquibase


The extensions that I created have also been moved to https://github.com/liquibase.


Take a look and let me know if you see anything wrong.


Nathan

I’m new to github, so open to suggestions. My assumption would be to use the pull request facility until someone does enough that I get tired of merging them and then add them as a collaborator.


Nathan 

Hi,


I noticed that the tags on the GitHub repo are not direct ancestors of master.  Actually, the common commit ancestor is much older:


$ for i in $(git tag); do echo -n $i " "; git log --oneline -1 $(git merge-base $i master) | cat; done

1.9.2  9ce1a64 Moved IntelliJ iml files to the root

1.9.3  9ce1a64 Moved IntelliJ iml files to the root

1.9.4  9ce1a64 Moved IntelliJ iml files to the root

1.9.5  9ce1a64 Moved IntelliJ iml files to the root

2.0.0  9ce1a64 Moved IntelliJ iml files to the root

liquibase-parent-2.0.1  9ce1a64 Moved IntelliJ iml files to the root



Basically, these tags are on some parallel history to master that diverged from master at commit 9ce1a64, probably due to some re-tried svn conversion.


Can you move these tags to be against their parallel commit ids in the current master?


Thanks!