From d8feed9be451053de8942c3cd6be21bbc8a1bd33 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Sat, 26 Nov 2022 15:57:50 -0800 Subject: [PATCH] copyright: change from "Google LLC" to "The Jujutsu Authors" Let's acknowledge everyone's contributions by replacing "Google LLC" in the copyright header by "The Jujutsu Authors". If I understand correctly, it won't have any legal effect, but maybe it still helps reduce concerns from contributors (though I haven't heard any concerns). Google employees can read about Google's policy at go/releasing/contributions#copyright. --- AUTHORS | 7 +++++++ examples/custom-backend/main.rs | 2 +- examples/custom-command/main.rs | 2 +- lib/build.rs | 2 +- lib/src/backend.rs | 2 +- lib/src/commit.rs | 2 +- lib/src/commit_builder.rs | 2 +- lib/src/conflicts.rs | 2 +- lib/src/dag_walk.rs | 2 +- lib/src/diff.rs | 2 +- lib/src/file_util.rs | 2 +- lib/src/files.rs | 2 +- lib/src/git.rs | 2 +- lib/src/git_backend.rs | 2 +- lib/src/gitignore.rs | 2 +- lib/src/index.rs | 2 +- lib/src/index_store.rs | 2 +- lib/src/lib.rs | 2 +- lib/src/local_backend.rs | 2 +- lib/src/local_backend_model.thrift | 2 +- lib/src/lock.rs | 2 +- lib/src/matchers.rs | 2 +- lib/src/op_heads_store.rs | 2 +- lib/src/op_store.rs | 2 +- lib/src/operation.rs | 2 +- lib/src/proto_op_store.rs | 2 +- lib/src/protos/mod.rs | 2 +- lib/src/protos/op_store.proto | 2 +- lib/src/protos/store.proto | 2 +- lib/src/protos/working_copy.proto | 2 +- lib/src/refs.rs | 2 +- lib/src/repo.rs | 2 +- lib/src/repo_path.rs | 2 +- lib/src/revset.pest | 2 +- lib/src/revset.rs | 2 +- lib/src/revset_graph_iterator.rs | 2 +- lib/src/rewrite.rs | 2 +- lib/src/settings.rs | 2 +- lib/src/simple_op_store.rs | 2 +- lib/src/simple_op_store_model.thrift | 2 +- lib/src/stacked_table.rs | 2 +- lib/src/store.rs | 2 +- lib/src/transaction.rs | 2 +- lib/src/tree.rs | 2 +- lib/src/tree_builder.rs | 2 +- lib/src/view.rs | 2 +- lib/src/working_copy.rs | 2 +- lib/src/workspace.rs | 2 +- lib/tests/test_bad_locking.rs | 2 +- lib/tests/test_commit_builder.rs | 2 +- lib/tests/test_commit_concurrent.rs | 2 +- lib/tests/test_conflicts.rs | 2 +- lib/tests/test_diff_summary.rs | 2 +- lib/tests/test_git.rs | 2 +- lib/tests/test_index.rs | 2 +- lib/tests/test_init.rs | 2 +- lib/tests/test_load_repo.rs | 2 +- lib/tests/test_merge_trees.rs | 2 +- lib/tests/test_mut_repo.rs | 2 +- lib/tests/test_operations.rs | 2 +- lib/tests/test_refs.rs | 2 +- lib/tests/test_revset.rs | 2 +- lib/tests/test_revset_graph_iterator.rs | 2 +- lib/tests/test_rewrite.rs | 2 +- lib/tests/test_view.rs | 2 +- lib/tests/test_working_copy.rs | 2 +- lib/tests/test_working_copy_concurrent.rs | 2 +- lib/tests/test_working_copy_sparse.rs | 2 +- lib/tests/test_workspace.rs | 2 +- lib/testutils/src/lib.rs | 2 +- src/cli_util.rs | 2 +- src/commands.rs | 2 +- src/config.rs | 2 +- src/diff_edit.rs | 2 +- src/formatter.rs | 2 +- src/graphlog.rs | 2 +- src/lib.rs | 2 +- src/main.rs | 2 +- src/template.pest | 2 +- src/template_parser.rs | 2 +- src/templater.rs | 2 +- src/ui.rs | 2 +- testing/fake-diff-editor.rs | 2 +- testing/fake-editor.rs | 2 +- tests/common/mod.rs | 2 +- tests/test_alias.rs | 2 +- tests/test_branch_command.rs | 2 +- tests/test_checkout.rs | 2 +- tests/test_commit_command.rs | 2 +- tests/test_concurrent_operations.rs | 2 +- tests/test_describe_command.rs | 2 +- tests/test_diff_command.rs | 2 +- tests/test_edit_command.rs | 2 +- tests/test_git_clone.rs | 2 +- tests/test_git_colocated.rs | 2 +- tests/test_git_export.rs | 2 +- tests/test_git_push.rs | 2 +- tests/test_git_remotes.rs | 2 +- tests/test_gitignores.rs | 2 +- tests/test_global_opts.rs | 2 +- tests/test_init_command.rs | 2 +- tests/test_interdiff_command.rs | 2 +- tests/test_log_command.rs | 2 +- tests/test_move_command.rs | 2 +- tests/test_new_command.rs | 2 +- tests/test_obslog_command.rs | 2 +- tests/test_operations.rs | 2 +- tests/test_print_command.rs | 2 +- tests/test_rebase_command.rs | 2 +- tests/test_restore_command.rs | 2 +- tests/test_revset_output.rs | 2 +- tests/test_show_command.rs | 2 +- tests/test_sparse_command.rs | 2 +- tests/test_split_command.rs | 2 +- tests/test_squash_command.rs | 2 +- tests/test_templater.rs | 2 +- tests/test_touchup_command.rs | 2 +- tests/test_undo.rs | 2 +- tests/test_unsquash_command.rs | 2 +- tests/test_untrack_command.rs | 2 +- tests/test_workspaces.rs | 2 +- 121 files changed, 127 insertions(+), 120 deletions(-) create mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 000000000..c944edf36 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,7 @@ +# This is the list of Jujutsu's significant contributors. +# +# This does not necessarily list everyone who has contributed code, +# especially since many employees of one corporation may be contributing. +# To see the full list of contributors, see the revision history in +# source control. +Google LLC diff --git a/examples/custom-backend/main.rs b/examples/custom-backend/main.rs index 9c911b582..41a4bdfd5 100644 --- a/examples/custom-backend/main.rs +++ b/examples/custom-backend/main.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/examples/custom-command/main.rs b/examples/custom-command/main.rs index ccd136b19..5047117e1 100644 --- a/examples/custom-command/main.rs +++ b/examples/custom-command/main.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/build.rs b/lib/build.rs index ffc76caa6..ffcb09881 100644 --- a/lib/build.rs +++ b/lib/build.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/backend.rs b/lib/src/backend.rs index a2c2a2737..7fd815893 100644 --- a/lib/src/backend.rs +++ b/lib/src/backend.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/commit.rs b/lib/src/commit.rs index d6bdb5b33..a6ffe3ec2 100644 --- a/lib/src/commit.rs +++ b/lib/src/commit.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/commit_builder.rs b/lib/src/commit_builder.rs index 67c039c8e..099a6bd08 100644 --- a/lib/src/commit_builder.rs +++ b/lib/src/commit_builder.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/conflicts.rs b/lib/src/conflicts.rs index f51c0b9d0..b63ec59ca 100644 --- a/lib/src/conflicts.rs +++ b/lib/src/conflicts.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/dag_walk.rs b/lib/src/dag_walk.rs index 4d79674b3..87e49c1b8 100644 --- a/lib/src/dag_walk.rs +++ b/lib/src/dag_walk.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/diff.rs b/lib/src/diff.rs index 383e3870f..aefdd0a65 100644 --- a/lib/src/diff.rs +++ b/lib/src/diff.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/file_util.rs b/lib/src/file_util.rs index 51bdb0b03..ff8cee228 100644 --- a/lib/src/file_util.rs +++ b/lib/src/file_util.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/files.rs b/lib/src/files.rs index 0521da7d7..bd3c865b7 100644 --- a/lib/src/files.rs +++ b/lib/src/files.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/git.rs b/lib/src/git.rs index 85bbea195..1f9b6b997 100644 --- a/lib/src/git.rs +++ b/lib/src/git.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/git_backend.rs b/lib/src/git_backend.rs index 36980c705..0ab9549c1 100644 --- a/lib/src/git_backend.rs +++ b/lib/src/git_backend.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/gitignore.rs b/lib/src/gitignore.rs index 88c257db8..57bac2998 100644 --- a/lib/src/gitignore.rs +++ b/lib/src/gitignore.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/index.rs b/lib/src/index.rs index 80fd03ef8..4c81d163b 100644 --- a/lib/src/index.rs +++ b/lib/src/index.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/index_store.rs b/lib/src/index_store.rs index b03487bdc..249af3261 100644 --- a/lib/src/index_store.rs +++ b/lib/src/index_store.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/lib.rs b/lib/src/lib.rs index 39f01372a..a5c766f13 100644 --- a/lib/src/lib.rs +++ b/lib/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/local_backend.rs b/lib/src/local_backend.rs index fa4130ed9..7cccf635e 100644 --- a/lib/src/local_backend.rs +++ b/lib/src/local_backend.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/local_backend_model.thrift b/lib/src/local_backend_model.thrift index e75cd0960..e818cef9b 100644 --- a/lib/src/local_backend_model.thrift +++ b/lib/src/local_backend_model.thrift @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/lock.rs b/lib/src/lock.rs index e824b25c1..fd8f32af6 100644 --- a/lib/src/lock.rs +++ b/lib/src/lock.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/matchers.rs b/lib/src/matchers.rs index e8c9df710..ec715f38d 100644 --- a/lib/src/matchers.rs +++ b/lib/src/matchers.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/op_heads_store.rs b/lib/src/op_heads_store.rs index e61537457..a4b0923a2 100644 --- a/lib/src/op_heads_store.rs +++ b/lib/src/op_heads_store.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/op_store.rs b/lib/src/op_store.rs index 9ef0bf628..4a71a6be3 100644 --- a/lib/src/op_store.rs +++ b/lib/src/op_store.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/operation.rs b/lib/src/operation.rs index 23f15de2e..6d7d763cd 100644 --- a/lib/src/operation.rs +++ b/lib/src/operation.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/proto_op_store.rs b/lib/src/proto_op_store.rs index 70a2e5595..01b5097cb 100644 --- a/lib/src/proto_op_store.rs +++ b/lib/src/proto_op_store.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/protos/mod.rs b/lib/src/protos/mod.rs index 5f0f92ca8..2a73c7b6d 100644 --- a/lib/src/protos/mod.rs +++ b/lib/src/protos/mod.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/protos/op_store.proto b/lib/src/protos/op_store.proto index 2c7be5cca..60727418a 100644 --- a/lib/src/protos/op_store.proto +++ b/lib/src/protos/op_store.proto @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/protos/store.proto b/lib/src/protos/store.proto index 8f70996ac..149c8658d 100644 --- a/lib/src/protos/store.proto +++ b/lib/src/protos/store.proto @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/protos/working_copy.proto b/lib/src/protos/working_copy.proto index 0e36baa4f..4eafcf29b 100644 --- a/lib/src/protos/working_copy.proto +++ b/lib/src/protos/working_copy.proto @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/refs.rs b/lib/src/refs.rs index 8c9834dc0..38e0b038b 100644 --- a/lib/src/refs.rs +++ b/lib/src/refs.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/repo.rs b/lib/src/repo.rs index bf0ce8a76..85329527f 100644 --- a/lib/src/repo.rs +++ b/lib/src/repo.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/repo_path.rs b/lib/src/repo_path.rs index 81cf2ba58..9249112ce 100644 --- a/lib/src/repo_path.rs +++ b/lib/src/repo_path.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/revset.pest b/lib/src/revset.pest index de2ad6aac..21ea93228 100644 --- a/lib/src/revset.pest +++ b/lib/src/revset.pest @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/revset.rs b/lib/src/revset.rs index 1ca2919f5..38731e698 100644 --- a/lib/src/revset.rs +++ b/lib/src/revset.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/revset_graph_iterator.rs b/lib/src/revset_graph_iterator.rs index f9a8654b5..94bdbbd6c 100644 --- a/lib/src/revset_graph_iterator.rs +++ b/lib/src/revset_graph_iterator.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/rewrite.rs b/lib/src/rewrite.rs index 9cfdba6ca..ba51028a5 100644 --- a/lib/src/rewrite.rs +++ b/lib/src/rewrite.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/settings.rs b/lib/src/settings.rs index 7cb67e8f5..34a12120d 100644 --- a/lib/src/settings.rs +++ b/lib/src/settings.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/simple_op_store.rs b/lib/src/simple_op_store.rs index ea2902f33..84cf86186 100644 --- a/lib/src/simple_op_store.rs +++ b/lib/src/simple_op_store.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/simple_op_store_model.thrift b/lib/src/simple_op_store_model.thrift index fc5a6d99d..cf0680c05 100644 --- a/lib/src/simple_op_store_model.thrift +++ b/lib/src/simple_op_store_model.thrift @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"), // you may not use this file except in compliance with the License. diff --git a/lib/src/stacked_table.rs b/lib/src/stacked_table.rs index 2af3bb112..b068fb705 100644 --- a/lib/src/stacked_table.rs +++ b/lib/src/stacked_table.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/store.rs b/lib/src/store.rs index ba8197f54..7c28edcdb 100644 --- a/lib/src/store.rs +++ b/lib/src/store.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/transaction.rs b/lib/src/transaction.rs index d2cc60e84..a4f7b4352 100644 --- a/lib/src/transaction.rs +++ b/lib/src/transaction.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/tree.rs b/lib/src/tree.rs index ad0d5ccf9..cb06b6bbb 100644 --- a/lib/src/tree.rs +++ b/lib/src/tree.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/tree_builder.rs b/lib/src/tree_builder.rs index db6f1a6de..11643669e 100644 --- a/lib/src/tree_builder.rs +++ b/lib/src/tree_builder.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/view.rs b/lib/src/view.rs index 7da625871..0fd052fbb 100644 --- a/lib/src/view.rs +++ b/lib/src/view.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/working_copy.rs b/lib/src/working_copy.rs index 10c9354f6..2b0f040e0 100644 --- a/lib/src/working_copy.rs +++ b/lib/src/working_copy.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/src/workspace.rs b/lib/src/workspace.rs index 6181257d3..999fec74f 100644 --- a/lib/src/workspace.rs +++ b/lib/src/workspace.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_bad_locking.rs b/lib/tests/test_bad_locking.rs index e386cb13c..fa2a37c9f 100644 --- a/lib/tests/test_bad_locking.rs +++ b/lib/tests/test_bad_locking.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_commit_builder.rs b/lib/tests/test_commit_builder.rs index 1bc100819..5d9d5f256 100644 --- a/lib/tests/test_commit_builder.rs +++ b/lib/tests/test_commit_builder.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_commit_concurrent.rs b/lib/tests/test_commit_concurrent.rs index 76f12eeec..8d144ba16 100644 --- a/lib/tests/test_commit_concurrent.rs +++ b/lib/tests/test_commit_concurrent.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_conflicts.rs b/lib/tests/test_conflicts.rs index d8f3218fa..64a93be19 100644 --- a/lib/tests/test_conflicts.rs +++ b/lib/tests/test_conflicts.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_diff_summary.rs b/lib/tests/test_diff_summary.rs index 41a04846e..4defa5c53 100644 --- a/lib/tests/test_diff_summary.rs +++ b/lib/tests/test_diff_summary.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_git.rs b/lib/tests/test_git.rs index 14784c565..262e9d488 100644 --- a/lib/tests/test_git.rs +++ b/lib/tests/test_git.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_index.rs b/lib/tests/test_index.rs index 511b4ac94..0d476579c 100644 --- a/lib/tests/test_index.rs +++ b/lib/tests/test_index.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_init.rs b/lib/tests/test_init.rs index dd94e418f..048cdc604 100644 --- a/lib/tests/test_init.rs +++ b/lib/tests/test_init.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_load_repo.rs b/lib/tests/test_load_repo.rs index 91da59ed5..e4fd4f88a 100644 --- a/lib/tests/test_load_repo.rs +++ b/lib/tests/test_load_repo.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_merge_trees.rs b/lib/tests/test_merge_trees.rs index 146c538c3..2c4d4ca86 100644 --- a/lib/tests/test_merge_trees.rs +++ b/lib/tests/test_merge_trees.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_mut_repo.rs b/lib/tests/test_mut_repo.rs index 63017c016..9a435e2c8 100644 --- a/lib/tests/test_mut_repo.rs +++ b/lib/tests/test_mut_repo.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_operations.rs b/lib/tests/test_operations.rs index 4850dd718..c115282c5 100644 --- a/lib/tests/test_operations.rs +++ b/lib/tests/test_operations.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_refs.rs b/lib/tests/test_refs.rs index 999268164..6ddc2b8df 100644 --- a/lib/tests/test_refs.rs +++ b/lib/tests/test_refs.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_revset.rs b/lib/tests/test_revset.rs index ea18792bc..65489c6bd 100644 --- a/lib/tests/test_revset.rs +++ b/lib/tests/test_revset.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_revset_graph_iterator.rs b/lib/tests/test_revset_graph_iterator.rs index 015dd7261..e706cc981 100644 --- a/lib/tests/test_revset_graph_iterator.rs +++ b/lib/tests/test_revset_graph_iterator.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_rewrite.rs b/lib/tests/test_rewrite.rs index ff1ac1ed0..63682e4b7 100644 --- a/lib/tests/test_rewrite.rs +++ b/lib/tests/test_rewrite.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_view.rs b/lib/tests/test_view.rs index d76e9133c..3673d1035 100644 --- a/lib/tests/test_view.rs +++ b/lib/tests/test_view.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_working_copy.rs b/lib/tests/test_working_copy.rs index 3f5a52f23..a67fa07cf 100644 --- a/lib/tests/test_working_copy.rs +++ b/lib/tests/test_working_copy.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_working_copy_concurrent.rs b/lib/tests/test_working_copy_concurrent.rs index 1403e8dd6..92b38e927 100644 --- a/lib/tests/test_working_copy_concurrent.rs +++ b/lib/tests/test_working_copy_concurrent.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_working_copy_sparse.rs b/lib/tests/test_working_copy_sparse.rs index aa03939d1..06b7728a7 100644 --- a/lib/tests/test_working_copy_sparse.rs +++ b/lib/tests/test_working_copy_sparse.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/tests/test_workspace.rs b/lib/tests/test_workspace.rs index 2c76da4c6..0ce9d4ea8 100644 --- a/lib/tests/test_workspace.rs +++ b/lib/tests/test_workspace.rs @@ -1,4 +1,4 @@ -// Copyright 2021 Google LLC +// Copyright 2021 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/lib/testutils/src/lib.rs b/lib/testutils/src/lib.rs index 42cf22629..9ebcc04f8 100644 --- a/lib/testutils/src/lib.rs +++ b/lib/testutils/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/cli_util.rs b/src/cli_util.rs index bce77ab5c..1b4d4349e 100644 --- a/src/cli_util.rs +++ b/src/cli_util.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/commands.rs b/src/commands.rs index 4b1773ea4..714fd9cc3 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/config.rs b/src/config.rs index abaa420a7..90b6864a7 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/diff_edit.rs b/src/diff_edit.rs index ef0fd93ec..528b2d64f 100644 --- a/src/diff_edit.rs +++ b/src/diff_edit.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/formatter.rs b/src/formatter.rs index a8fa5c694..25751f1fe 100644 --- a/src/formatter.rs +++ b/src/formatter.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/graphlog.rs b/src/graphlog.rs index 3515211a3..f46957a63 100644 --- a/src/graphlog.rs +++ b/src/graphlog.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/lib.rs b/src/lib.rs index b8d0872d5..89ce082c5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main.rs b/src/main.rs index 8ec3dfcec..93402487b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/template.pest b/src/template.pest index 74e61237b..71a641c67 100644 --- a/src/template.pest +++ b/src/template.pest @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/template_parser.rs b/src/template_parser.rs index 8b9311be6..bdd458b12 100644 --- a/src/template_parser.rs +++ b/src/template_parser.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/templater.rs b/src/templater.rs index 9c0c91e6b..8781ace7f 100644 --- a/src/templater.rs +++ b/src/templater.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/ui.rs b/src/ui.rs index 0e3280efd..6eba36f6e 100644 --- a/src/ui.rs +++ b/src/ui.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/testing/fake-diff-editor.rs b/testing/fake-diff-editor.rs index 7c803e575..ff5e07951 100644 --- a/testing/fake-diff-editor.rs +++ b/testing/fake-diff-editor.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/testing/fake-editor.rs b/testing/fake-editor.rs index c60c99f69..d62736025 100644 --- a/testing/fake-editor.rs +++ b/testing/fake-editor.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/common/mod.rs b/tests/common/mod.rs index 49438b6f7..c0f86472a 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_alias.rs b/tests/test_alias.rs index 3520d480a..c7dcd0bd0 100644 --- a/tests/test_alias.rs +++ b/tests/test_alias.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_branch_command.rs b/tests/test_branch_command.rs index f86052804..2d031a801 100644 --- a/tests/test_branch_command.rs +++ b/tests/test_branch_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_checkout.rs b/tests/test_checkout.rs index d859777db..393fa0e93 100644 --- a/tests/test_checkout.rs +++ b/tests/test_checkout.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_commit_command.rs b/tests/test_commit_command.rs index c9fd97175..5aea9b0c6 100644 --- a/tests/test_commit_command.rs +++ b/tests/test_commit_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_concurrent_operations.rs b/tests/test_concurrent_operations.rs index 3d5f3d8e1..de3e39d11 100644 --- a/tests/test_concurrent_operations.rs +++ b/tests/test_concurrent_operations.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_describe_command.rs b/tests/test_describe_command.rs index 960522278..af6f7cdf8 100644 --- a/tests/test_describe_command.rs +++ b/tests/test_describe_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_diff_command.rs b/tests/test_diff_command.rs index 260523c68..6d33b29ab 100644 --- a/tests/test_diff_command.rs +++ b/tests/test_diff_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_edit_command.rs b/tests/test_edit_command.rs index a0d6f96dc..8a5bbcaed 100644 --- a/tests/test_edit_command.rs +++ b/tests/test_edit_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_git_clone.rs b/tests/test_git_clone.rs index 3a0166ffe..8d14d847a 100644 --- a/tests/test_git_clone.rs +++ b/tests/test_git_clone.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_git_colocated.rs b/tests/test_git_colocated.rs index 5436d8dcb..48b951d26 100644 --- a/tests/test_git_colocated.rs +++ b/tests/test_git_colocated.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_git_export.rs b/tests/test_git_export.rs index 486c0e370..d9b79a5b2 100644 --- a/tests/test_git_export.rs +++ b/tests/test_git_export.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_git_push.rs b/tests/test_git_push.rs index 4ae12ae05..3ecf0e007 100644 --- a/tests/test_git_push.rs +++ b/tests/test_git_push.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_git_remotes.rs b/tests/test_git_remotes.rs index 792eacbd4..5a30945ac 100644 --- a/tests/test_git_remotes.rs +++ b/tests/test_git_remotes.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_gitignores.rs b/tests/test_gitignores.rs index 9fc2da171..5042abb50 100644 --- a/tests/test_gitignores.rs +++ b/tests/test_gitignores.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_global_opts.rs b/tests/test_global_opts.rs index 813fe8bbb..b1cf7e79f 100644 --- a/tests/test_global_opts.rs +++ b/tests/test_global_opts.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_init_command.rs b/tests/test_init_command.rs index ac278b8ff..c170f118b 100644 --- a/tests/test_init_command.rs +++ b/tests/test_init_command.rs @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2020 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_interdiff_command.rs b/tests/test_interdiff_command.rs index bdf04adce..d108a2c95 100644 --- a/tests/test_interdiff_command.rs +++ b/tests/test_interdiff_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_log_command.rs b/tests/test_log_command.rs index 90e1419a9..5cf1330bf 100644 --- a/tests/test_log_command.rs +++ b/tests/test_log_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_move_command.rs b/tests/test_move_command.rs index 163e2066d..25682b50b 100644 --- a/tests/test_move_command.rs +++ b/tests/test_move_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_new_command.rs b/tests/test_new_command.rs index f56843fa8..fb08c5950 100644 --- a/tests/test_new_command.rs +++ b/tests/test_new_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_obslog_command.rs b/tests/test_obslog_command.rs index 83f8b6507..dd8bd73f0 100644 --- a/tests/test_obslog_command.rs +++ b/tests/test_obslog_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_operations.rs b/tests/test_operations.rs index 59a011dcf..f3b00da84 100644 --- a/tests/test_operations.rs +++ b/tests/test_operations.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_print_command.rs b/tests/test_print_command.rs index 9617024c6..b8f5609f5 100644 --- a/tests/test_print_command.rs +++ b/tests/test_print_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_rebase_command.rs b/tests/test_rebase_command.rs index 0811645d8..3477c2d08 100644 --- a/tests/test_rebase_command.rs +++ b/tests/test_rebase_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_restore_command.rs b/tests/test_restore_command.rs index 877bfc0ba..2c4e69f3c 100644 --- a/tests/test_restore_command.rs +++ b/tests/test_restore_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_revset_output.rs b/tests/test_revset_output.rs index c9b405f1a..b9748ed05 100644 --- a/tests/test_revset_output.rs +++ b/tests/test_revset_output.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_show_command.rs b/tests/test_show_command.rs index 21d2aac40..e869457ad 100644 --- a/tests/test_show_command.rs +++ b/tests/test_show_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_sparse_command.rs b/tests/test_sparse_command.rs index be6fa2080..be1631cdf 100644 --- a/tests/test_sparse_command.rs +++ b/tests/test_sparse_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_split_command.rs b/tests/test_split_command.rs index 30f599862..f04e2f639 100644 --- a/tests/test_split_command.rs +++ b/tests/test_split_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_squash_command.rs b/tests/test_squash_command.rs index f60522e3e..e36bef9f6 100644 --- a/tests/test_squash_command.rs +++ b/tests/test_squash_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_templater.rs b/tests/test_templater.rs index 9d8bcbf67..14021fe46 100644 --- a/tests/test_templater.rs +++ b/tests/test_templater.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_touchup_command.rs b/tests/test_touchup_command.rs index 1d0efddcc..03c11ddbc 100644 --- a/tests/test_touchup_command.rs +++ b/tests/test_touchup_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_undo.rs b/tests/test_undo.rs index 7d313daa9..851719cca 100644 --- a/tests/test_undo.rs +++ b/tests/test_undo.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_unsquash_command.rs b/tests/test_unsquash_command.rs index 2f392f02c..711d4c638 100644 --- a/tests/test_unsquash_command.rs +++ b/tests/test_unsquash_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_untrack_command.rs b/tests/test_untrack_command.rs index 0bd40c3d0..5ab77761e 100644 --- a/tests/test_untrack_command.rs +++ b/tests/test_untrack_command.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/tests/test_workspaces.rs b/tests/test_workspaces.rs index dc5db0ea7..35e9a6b6e 100644 --- a/tests/test_workspaces.rs +++ b/tests/test_workspaces.rs @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2022 The Jujutsu Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.