sf64-dc

(★ 44)

Sega Dreamcast port of Star Fox 64 decompilation

파일 탐색기

  • .clang-format
  • .clang-tidy
  • .gitignore
  • .gitmodules
  • config.yml
  • diff.py
  • diff_settings.py
  • environ.sh
  • first_diff.py
  • ip.bin
  • LICENSE.md
  • Makefile
  • mips_to_c.sh
  • README.md
  • segfinder.py
  • sf64.ico
  • starfox64.eu.rev0.uncompressed.md5
  • starfox64.jp.rev0.uncompressed.md5
  • starfox64.us.rev1.md5
  • starfox64.us.rev1.uncompressed.md5
  • sym_info.py

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

brew

설명 보기 ▼

macOS와 Linux를 위한 패키지 관리자.
더 많은 정보: <https://docs.brew.sh/Manpage>.

brew install {{formula|cask}}

공식(formula) 혹은 캐스크(cask)의 최신 안정 버전을 설치:

brew list

설치된 모든 공식(formulae)과 캐스크(casks) 나열:

brew upgrade {{formula|cask}}

설치된 특정 공식(formula) 혹은 캐스크(cask) 업그레이드 (옵션이 주어지지 않으면 모든 공식과 캐스크 업그레이드):

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

git submodule

설명 보기 ▼

Inspect, update, and manage submodules.

git submodule

View existing submodules and the checked-out commit for each one:

git submodule update --init --recursive

Install a repository's submodules (listed in `.gitmodules`):

git submodule add {{repository_url}}

Add a Git repository as a submodule of the current one:

🔍

python3

설명 보기 ▼

이 명령은 `python`의 별칭입니다.

tldr python

자세한 내용은 원본 명령을 참고하세요:

🔍

mkisofs

설명 보기 ▼

디렉터리에서 ISO 파일 생성.
`genisoimage`라는 별칭으로도 사용됩니다.
더 많은 정보: <https://manned.org/mkisofs>.

mkisofs -o {{filename.iso}} {{path/to/source_directory}}

디렉터리에서 ISO 생성:

mkisofs -o {{filename.iso}} -V "{{label_name}}" {{path/to/source_directory}}

ISO 생성 시 디스크 레이블 설정:

mkisofs -o {{filename.iso}} -allow-limited-size {{path/to/source_directory}}

Create an ISO image with files larger than 2GiB by reporting a smaller apparent size for ISO9660 filesystems:

🔍

gmake

설명 보기 ▼

이 명령은 `make`의 별칭입니다.

tldr make

자세한 내용은 원본 명령을 참고하세요:

// repository documentation