File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -388,21 +388,21 @@ pub mod merge {
388
388
pub mod diff {
389
389
use gix:: bstr:: BString ;
390
390
391
+ /// Print all changes between two objects
391
392
#[ derive( Debug , clap:: Parser ) ]
392
- #[ command( about = "TODO" ) ]
393
393
pub struct Platform {
394
394
#[ clap( subcommand) ]
395
395
pub cmd : SubCommands ,
396
396
}
397
397
398
398
#[ derive( Debug , clap:: Subcommand ) ]
399
399
pub enum SubCommands {
400
- /// TODO
400
+ /// Diff two trees by specifying their revspecs.
401
401
Tree {
402
- /// TODO
402
+ /// A revspec representing the before or old tree
403
403
#[ clap( value_parser = crate :: shared:: AsBString ) ]
404
404
old_treeish : BString ,
405
- /// TODO
405
+ /// A revspec representing the after or new tree
406
406
#[ clap( value_parser = crate :: shared:: AsBString ) ]
407
407
new_treeish : BString ,
408
408
} ,
You can’t perform that action at this time.
0 commit comments