-
Notifications
You must be signed in to change notification settings - Fork 372
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commands: move checkout code to checkout.rs
- Loading branch information
1 parent
9e25fe2
commit 71ebc3b
Showing
2 changed files
with
66 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// 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. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://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. | ||
|
||
use tracing::instrument; | ||
|
||
use jj_lib::backend::ObjectId; | ||
|
||
use crate::{ | ||
cli_util::{join_message_paragraphs, CommandError, CommandHelper, RevisionArg}, | ||
ui::Ui, | ||
}; | ||
|
||
/// Create a new, empty change and edit it in the working copy | ||
/// | ||
/// For more information, see | ||
/// https://github.com/martinvonz/jj/blob/main/docs/working-copy.md. | ||
#[derive(clap::Args, Clone, Debug)] | ||
#[command(visible_aliases = &["co"])] | ||
pub(crate) struct CheckoutArgs { | ||
/// The revision to update to | ||
revision: RevisionArg, | ||
/// Ignored (but lets you pass `-r` for consistency with other commands) | ||
#[arg(short = 'r', hide = true)] | ||
unused_revision: bool, | ||
/// The change description to use | ||
#[arg(long = "message", short, value_name = "MESSAGE")] | ||
message_paragraphs: Vec<String>, | ||
} | ||
|
||
#[instrument(skip_all)] | ||
pub(crate) fn cmd_checkout( | ||
ui: &mut Ui, | ||
command: &CommandHelper, | ||
args: &CheckoutArgs, | ||
) -> Result<(), CommandError> { | ||
let mut workspace_command = command.workspace_helper(ui)?; | ||
let target = workspace_command.resolve_single_rev(&args.revision, ui)?; | ||
let mut tx = | ||
workspace_command.start_transaction(&format!("check out commit {}", target.id().hex())); | ||
let commit_builder = tx | ||
.mut_repo() | ||
.new_commit( | ||
command.settings(), | ||
vec![target.id().clone()], | ||
target.tree_id().clone(), | ||
) | ||
.set_description(join_message_paragraphs(&args.message_paragraphs)); | ||
let new_commit = commit_builder.write()?; | ||
tx.edit(&new_commit).unwrap(); | ||
tx.finish(ui)?; | ||
Ok(()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters