asdf 기본 사항 및 치트 시트
asdf
는 도구 버전 관리자입니다. 단일 CLI 도구 및 명령 인터페이스로 각 프로젝트 런타임을 관리합니다.특징:
ASDF 설치
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.8.0
~/.bashrc에 추가
. $HOME/.asdf/asdf.sh
. $HOME/.asdf/completions/asdf.bash
기본 명령
asdf update
asdf plugin add ruby
asdf plugin list
또는
asdf plugin list --urls
asdf plugin update --all
또는
asdf plugin update ruby
asdf plugin remove ruby
asdf list-all ruby
asdf install ruby 3.0.0
asdf list ruby
asdf current ruby
asdf current
asdf where
asdf local ruby 3.0.0
또는
asdf global ruby 2.7.2
asdf 제거
~/.bashrc
에서 다음 제거. $HOME/.asdf/asdf.sh
. $HOME/.asdf/completions/asdf.bash
rm -rf ${ASDF_DATA_DIR:-$HOME/.asdf} ~/.tool-versions
Reference
이 문제에 관하여(asdf 기본 사항 및 치트 시트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/tanminator/asdf-basics-cheat-sheet-hn8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)