Title: BookKeeper Version Control Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. The "git":http://git-scm.com repository for BookKeeper is "https://git-wip-us.apache.org/repos/asf/bookkeeper.git":https://git-wip-us.apache.org/repos/asf/bookkeeper.git. This is our primary repository and all commits must be pushed it to. We also have a mirror on github, "http://github.com/apache/bookkeeper":http://github.com/apache/bookkeeper. Note, that this is a readonly mirror. We do *not* accept pull requests through github at this time. h2. Contributing a patch to BookKeeper Contributions to BookKeeper must go through our "bug tracking system":https://issues.apache.org/jira/browse/BOOKKEEPER. A suggested workflow is as follows: # Create a bug report on JIRA. # Create a local branch from master. @git checkout -b BOOKKEEPER-1234 master@ # Make your modifications, add tests, and run the whole test suite. # Commit your changes. # Generate a patch. @git format-patch --no-prefix master@ # Upload the patch to JIRA. # If the patch is non-trivial, also upload it to "review board":https://reviews.apache.org/r/new/ under bookkeeper-git. # Click on *Patch Available* in JIRA to signal that the patch is ready to be reviewed.