just playing with tangled
1// Copyright 2020 The Jujutsu Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15use jj_lib::repo_path::RepoPathBuf;
16use tracing::instrument;
17
18use super::update_sparse_patterns_with;
19use crate::cli_util::CommandHelper;
20use crate::command_error::CommandError;
21use crate::ui::Ui;
22
23/// Reset the patterns to include all files in the working copy
24#[derive(clap::Args, Clone, Debug)]
25pub struct SparseResetArgs {}
26
27#[instrument(skip_all)]
28pub fn cmd_sparse_reset(
29 ui: &mut Ui,
30 command: &CommandHelper,
31 _args: &SparseResetArgs,
32) -> Result<(), CommandError> {
33 let mut workspace_command = command.workspace_helper(ui)?;
34 update_sparse_patterns_with(ui, &mut workspace_command, |_ui, _old_patterns| {
35 Ok(vec![RepoPathBuf::root()])
36 })
37}