##// END OF EJS Templates
copy: add option to unmark file as copied...
copy: add option to unmark file as copied To unmark a file as copied, the user currently has to do this: hg forget <dest> hg add <dest> The new command simplifies that to: hg copy --forget <dest> That's not a very big improvement, but I'm planning to also teach `hg copy [--forget]` a `--at-rev` argument for marking/unmarking copies after commit (usually with `--at-rev .`). Differential Revision: https://phab.mercurial-scm.org/D8029

File last commit:

r40013:74da9d99 default
r44844:8be0c635 default
Show More
lib.rs
23 lines | 535 B | application/rls-services+xml | RustLexer
Yuya Nishihara
rust-chg: add wrapper around C function
r40006 // Copyright 2018 Yuya Nishihara <yuya@tcha.org>
//
// This software may be used and distributed according to the terms of the
// GNU General Public License version 2 or any later version.
Yuya Nishihara
rust-chg: add parser for request messages sent to "S" channel...
r40007 extern crate bytes;
Yuya Nishihara
rust-chg: add future that handles "attachio" request...
r40008 #[macro_use]
extern crate futures;
Yuya Nishihara
rust-chg: add wrapper around C function
r40006 extern crate libc;
Yuya Nishihara
rust-chg: add future that handles "attachio" request...
r40008 extern crate tokio;
Yuya Nishihara
rust-chg: add parser for request messages sent to "S" channel...
r40007 extern crate tokio_hglib;
Yuya Nishihara
rust-chg: add callback to handle pager and shell command requests...
r40010 extern crate tokio_process;
Yuya Nishihara
rust-chg: add wrapper around C function
r40006
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
r40013 mod attachio;
mod clientext;
Yuya Nishihara
rust-chg: port basic socket path handling from cHg of C...
r40012 pub mod locator;
Yuya Nishihara
rust-chg: add parser for request messages sent to "S" channel...
r40007 pub mod message;
Yuya Nishihara
rust-chg: add wrapper around C function
r40006 pub mod procutil;
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
r40013 mod runcommand;
Yuya Nishihara
rust-chg: add callback to handle pager and shell command requests...
r40010 mod uihandler;
Yuya Nishihara
rust-chg: add Client extensions to run cHg-specific requests...
r40013 pub use clientext::ChgClientExt;
Yuya Nishihara
rust-chg: add callback to handle pager and shell command requests...
r40010 pub use uihandler::{ChgUiHandler, SystemHandler};