gitflect
Fast Git-aware prompt helper for Bash and Zsh on Linux and macOS
파일 탐색기
- pre-commit
- bug_report.yml
- feature_request.yml
- ci.yml
- docs-preview.yml
- docs-publish.yml
- release-trigger.yml
- release.yml
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- PULL_REQUEST_TEMPLATE.md
- SECURITY.md
- gitflect-prompt.cast
- favicon.svg
- logo-dark.svg
- logo-light.svg
- logo.svg
- GitHubIcon.astro
- HeartIcon.astro
- Logo.astro
- PromptCast.astro
- Search.astro
- TableOfContents.astro
- navigation.ts
- BaseLayout.astro
- DocsLayout.astro
- paths.ts
- changelog.astro
- commands.md
- release-artifacts.md
- install.md
- shell-setup.md
- uninstall.md
- update.md
- configuration.md
- prompt-segments.md
- settings.md
- themes.md
- index.md
- 404.astro
- index.astro
- og.png.ts
- robots.txt.ts
- global.css
- asciinema-player.d.ts
- ogImage.ts
- .gitignore
- astro.config.mjs
- biome.json
- package-lock.json
- package.json
- README.md
- tsconfig.json
- config.rs
- git.rs
- main.rs
- render.rs
- shell.rs
- terminal.rs
- tui.rs
- wizard.rs
- cli_integration.rs
- TESTING.md
- .gitignore
- Cargo.lock
- Cargo.toml
- CHANGELOG.md
- install.sh
- LICENSE
- README.md
- uninstall.sh
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cargo build
설명 보기 ▼
cargo build
Compile a local package and all of its dependencies.
cargo {{[b|build]}}
Build the package or packages defined by the `Cargo.toml` manifest file in the local path:
cargo {{[b|build]}} {{[-r|--release]}}
Build artifacts in release mode, with optimizations:
cargo {{[b|build]}} --locked
Require that `Cargo.lock` is up to date:
cargo clippy
설명 보기 ▼
cargo clippy
A collection of lints to catch common mistakes and improve your Rust code.
cargo clippy
Run checks over the code in the current directory:
cargo clippy --locked
Require that `Cargo.lock` is up to date:
cargo clippy --workspace
Run checks on all packages in the workspace:
cargo install
설명 보기 ▼
cargo install
Build and install a Rust binary.
cargo install {{package}}@{{version}}
Install a package from <https://crates.io> (the version is optional - latest by default):
cargo install --git {{repo_url}}
Install a package from the specified Git repository:
cargo install --git {{repo_url}} --{{branch|tag|rev}} {{branch_name|tag|commit_hash}}
Build from the specified branch/tag/commit when installing from a Git repository:
cargo test
설명 보기 ▼
cargo test
Execute the unit and integration tests of a Rust package.
cargo {{[t|test]}} {{test_name}}
Only run tests containing a specific string in their names:
cargo {{[t|test]}} -- --test-threads {{count}}
Set the number of simultaneous running test cases:
cargo {{[t|test]}} {{[-r|--release]}}
Test artifacts in release mode, with optimizations:
cargo uninstall
설명 보기 ▼
cargo uninstall
Remove a Rust binary installed globally using `cargo install`.
cargo uninstall {{package_spec}}
Remove an installed binary:
