cFS
The Core Flight System (cFS)
파일 탐색기
- codeql-coding-standard.yml
- codeql-security.yml
- jpl-misra.qls
- bug_report.md
- feature_request.md
- comment_documentation_change.md
- fsw_code_change.md
- tools_code_change.md
- workflows_change.md
- common-test.mk
- cppcheck-merge.xslt
- cppcheck-xml2text.xslt
- create_ccb_agenda.py
- image-builder.mk
- mcdc-analyze.sh
- mcdc-compare.sh
- rtems-test.mk
- add-to-project-reusable.yml
- add-to-project.yml
- build-cfs-multitarget.yml
- build-doc-reusable.yml
- build-run-app-reusable.yml
- cfs-wiki.yml
- changelog.yml
- codeql-analysis.yml
- codeql-reusable.yml
- cosmos-gem.yml
- format-check.yml
- mcdc-reusable.yml
- mcdc.yml
- README.md
- Reusable-Workflows-Architecture.svg
- static-analysis-reusable.yml
- test-cfs-qemu.yml
- unit-test-coverage-reusable.yml
- update-bundle.yml
- pull_request_template.md
- action.yml
- action.yml
- action.yml
- action.yml
- action.yml
- action.yml
- cf
- ci_lab
- cs
- ds
- fm
- hk
- hs
- lc
- md
- mm
- sample_app
- sbn
- sbn_f_remap
- sbn_udp
- sc
- sch_lab
- to_lab
- sample_lib
- cfe_core_api_base_msgid_values.h
- container-start
- install_custom.cmake
- sbn_msgids.h
- cfe_core_api_base_msgid_values.h
- container-start
- install_custom.cmake
- sbn_msgids.h
- cfe-topicids.xml
- config.xml
- global_core_api_base_msgid_values.h
- global_sbn_topicids.h
- cs_tablestbl.c
- lc_def_adt-test.c
- sample_app_alt1.c
- sc_append_test.c
- sc_ats2_test.c
- sch_lab_table.c
- to_lab_sub.c
- to_lab_sub_alt.c
- to_lab_sub_bad.c
- arch_build_custom.cmake
- arch_build_custom_native.cmake
- cfe_perfids.h
- default_osconfig.cmake
- default_pspconfig.cmake
- generate_startup.cmake
- global_build_options.cmake
- leon3-gaisler-rtems5_osconfig.cmake
- mission_build_custom.cmake
- native_osconfig.cmake
- native_pspconfig.cmake
- riscv64-poky-linux_osconfig.cmake
- targets.cmake
- toolchain-aarch64-vx7dkm.cmake
- toolchain-aarch64-vx7rtp.cmake
- toolchain-aarch64le-qnx-gnu.cmake
- toolchain-arm-cortexa8_neon-linux-gnueabi.cmake
- toolchain-arm-rpi-linux.cmake
- toolchain-armv7le-qnx-gnu.cmake
- toolchain-common-vx7dkm.cmake
- toolchain-common-vx7rtp.cmake
- toolchain-i686-linux-clang.cmake
- toolchain-i686-linux-gnu.cmake
- toolchain-i686-rtems4.11.cmake
- toolchain-i686-rtems5.cmake
- toolchain-i686-rtems6.cmake
- toolchain-leon3-gaisler-rtems5.cmake
- toolchain-mips32r2-poky-linux.cmake
- toolchain-powerpc-440_softfp-linux-gnu.cmake
- toolchain-ppc-vxworks6.9.cmake
- toolchain-qnx-sdp-init.cmake
- toolchain-riscv64-poky-linux.cmake
- toolchain-x86_64-qnx-gnu.cmake
- toolchain-x86_64-vx7dkm.cmake
- toolchain-x86_64-vx7rtp.cmake
- vxsim_lnx-vx7dkm_osconfig.cmake
- cfs-cosmos-plugin
- cFS-GroundSystem
- CMakeLists.txt
- commandline-tools
- eds
- elf2cfetbl
- tblCRCTool
- .clang-format
- .gitattributes
- .gitignore
- .gitmodules
- .lgtm.yml
- cfe
- cFS_Apps_Corporate_CLA.pdf
- cFS_Apps_Individual_CLA.pdf
- cFS_Framework_Corporate_CLA.pdf
- cFS_Framework_Individual_CLA.pdf
- CITATION.cff
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- custom-rules.mk
- distbuild.mk
- EDS_Integration_Guide.md
- edslib-test.mk
- goal-configs.mk
- INTEGRATION.md
- LICENSE
- local-test.mk
- Makefile
- native_eds-test.mk
- native_std-test.mk
- osal
- osal-test.mk
- pc686_rtems5-test.mk
- psp
- qemu_yocto_linux-test.mk
- README.md
- SECURITY.md
- simple.mk
- simple_defs
- target-configs.mk
- target-rules.mk
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
python3
이 명령은 `python`의 별칭입니다.
tldr python
자세한 내용은 원본 명령을 참고하세요:
