ajsecord / copybara

Copybara: A tool for transforming and moving code between repositories.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Copybara

A tool for transforming and moving code between repositories.

Copybara is a tool used internally at Google. It transforms and moves code between repositories.

Often, source code needs to exist in multiple repositories, and Copybara allows you to transform and move source code between these repositories. A common case is a project that involves maintaining a confidential repository and a public repository in sync.

Copybara requires you to choose one of the repositories to be the authoritative repository, so that there is always one source of truth. However, the tool allows contributions to any repository, and any repository can be used to cut a release.

The most common use case involves repetitive movement of code from one repository to another. Copybara can also be used for moving code once to a new repository.

Examples uses of Copybara include:

  • Importing sections of code from a confidential repository to a public repository.

  • Importing code from a public repository to a confidential repository.

  • Importing a change from a non-authoritative repository into the authoritative repository. When a change is made in the non-authoritative repository (for example, a contributor in the public repository), Copybara transforms and moves that change into the appropriate place in the authoritative repository. Any merge conflicts are dealt with in the same way as an out-of-date change within the authoritative repository.

Currently, the only supported type of repository is Git. Support for other repositories types (such as Hg) will be added in the future.

Copybara is similar to MOE, which is a tool to synchronize between source code repositories. Copybara’s design has learned much from MOE, and will have ongoing support. MOE will not be deprecated until Copybara is able to provide satisfactory services to MOE customers.

Getting Started using Copybara

Copybara doesn't have a release process yet, so you need to compile from HEAD. In order to do that you need:

  • Install JDK 8.
  • Install Bazel.
  • Build: bazel build //java/com/google/copybara.
  • Tests: bazel test //... if you want to ensure you are not using a broken version.

Documentation

We are still working on the documentation. Here are some resources:

Optional tips

  • If you want to see the test errors in Bazel, instead of having to cat the logs, add this line to your ~/.bazelrc: test --test_output=streamed.

About

Copybara: A tool for transforming and moving code between repositories.

License:Apache License 2.0


Languages

Language:Java 91.7%Language:Shell 3.9%Language:Python 3.6%Language:Perl 6 0.4%Language:Perl 0.3%