Skip to content

Fix quotation mark in git command #486

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 27, 2019
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
2 changes: 1 addition & 1 deletion posts/inside-rust/2019-12-23-formatting-the-compiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ git rebase -i 9b98af84c4aa66392236fff59c86da2130d46d46
# and the `--exec` command specifies that after each commit lands, it will be formatted.
# This command will fail if your PR has intermediary commits with syntax conflicts.
git rebase -i a916ac22b9f7f1f0f7aba0a41a789b3ecd765018 \
--exec './x.py fmt && git add -u && git commit --amend` \
--exec './x.py fmt && git add -u && git commit --amend' \
# This exec is optional, and won't work if your intermediate commits don't build,
# but it helps make sure that the formatting resolution didn't introduce any errors.
# It's recommended to run it afterwards before pushing at least.
Expand Down