Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions git-branchless-submit/src/phabricator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ impl Forge for PhabricatorForge<'_> {
.map_err(|err| Error::VerifyPermissions { source: err })?
.map_err(Error::BuildRebasePlan)?;
let command = if !should_mock() {
let mut args = vec!["arc", "diff", "--create", "--verbatim"];
let mut args = vec!["arc", "diff", "--create", "--verbatim", "--allow-untracked"];
if *draft {
args.push("--draft");
}
Expand Down Expand Up @@ -614,7 +614,14 @@ Differential Revision: https://phabricator.example.com/D000$(git rev-list --coun
.map_err(Error::BuildRebasePlan)?;
let test_options = ResolvedTestOptions {
command: if !should_mock() {
let mut args = vec!["arc", "diff", "--head", "HEAD", "HEAD^"];
let mut args = vec![
"arc",
"diff",
"--head",
"HEAD",
"HEAD^",
"--allow-untracked",
];
args.extend(match message {
Some(message) => ["-m", message.as_ref()],
None => ["-m", "update"],
Expand Down