Files
tubestation/python
Alex Hochheiden 7982953517 Bug 1964189 - Add support for jj in ./mach vcs-setup r=sfink
- The old behavior is maintained. If no `--vcs` flag is passed in, it will auto-detect what repo to configure.
- If `--vcs=jj` is passed, both `git and `jj` configure checks run.

The `jj` configure does the following:
- Checks if `jj` is on `PATH`
- Checks for the expected `git` config
- Checks for the minimum required `jj` version
- Sets up a git colocated `jj` repo if no `.jj` dir is present
- Copies `user.name` and `user.email` config values from `git` config, if set.
- Sets repo config values that enable `jj fix` (if they are not already set with custom values)
- Enables watchman, if installed.
- Checks if watchman is enabled/working.

Differential Revision: https://phabricator.services.mozilla.com/D247677
2025-05-14 18:36:27 +00:00
..

This directory contains common Python code.

The basic rule is that if Python code is cross-module (that's "module" in the
Mozilla meaning - as in "module ownership") and is MPL-compatible, it should
go here.

What should not go here:

* Vendored python modules (use third_party/python instead)
* Python that is not MPL-compatible (see other-licenses/)
* Python that has good reason to remain close to its "owning" (Mozilla)
  module (e.g. it is only being consumed from there).

Historical information can be found at
https://bugzilla.mozilla.org/show_bug.cgi?id=775243
https://bugzilla.mozilla.org/show_bug.cgi?id=1346025