...
Code Block |
---|
git clone https://git-wip-us.apache.org/repos/asf/geode.gitgithub.com/apache/geode geode cd geode git remote add github https://github.com/apache/geode git config reviewboard.url https://reviews.apache.org/ git checkout -b develop origin/develop |
What this does is create an open directory that is a clone of the apache repository. Any changes you push from here will go directly into the public apache repository.
The 'github' remote is there so you can merge pull requests that other people submit to our project on github.
For more info, see the section on accepting pull requests on the apache geode wiki.
The 'github' remote is there so you can merge pull requests that other people submit to our project on github.
For more info, see the section on accepting pull requests on the apache geode wiki.
4) initialize git-flow in geode checkout
Code Block |
---|
git flow init |
Which branch should be used for bringing forth production releases?- masterBranch name for production releases: [master]Which branch should be used for integration of the "next release"?Branch name for "next release" development: [develop]How to name your supporting branch prefixes?Feature branches? [feature/]Release branches? [release/]Hotfix branches? [hotfix/]Support branches? [support/]Version tag prefix? [] v
5) configure eclipse projects
Code Block |
---|
./gradlew eclipse |
6) build everything
Code Block |
---|
./gradlew build -Dskip.tests=true |
...