benchmarks
No description available.
파일 탐색기
- benchmark.sql
- setup.sql
- benchmark.sql
- queries.json
- setup.sql
- warmup.sql
- benchmark.sql
- queries.json
- setup.sql
- warmup.sql
- benchmark.sql
- queries.json
- setup.sql
- warmup.sql
- warmup.sql
- queries_firebolt.js
- queries_redshift.js
- queries_snowflake.js
- queries.json
- setup.sql
- benchmark.sql
- setup.sql
- warmup.sql
- benchmark.sql
- warmup.sql
- connections-cluster.js
- connections-server.js
- fb-benchmark-k6.js
- package-lock.json
- package.json
- README.md
- __init__.py
- base.py
- bigquery.py
- firebolt.py
- redshift.py
- snowflake.py
- __init__.py
- base.py
- csv_exporter.py
- visual_exporter.py
- __init__.py
- main.py
- runner.py
- README.md
- requirements.txt
- .gitignore
- README.md
- sample_credentials.json
- __init__.py
- k6config.json
- settings.py
- concurrency.md
- first_run.md
- README.md
- TPCH-100gb.csv
- .gitignore
- LICENSE
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git checkout
설명 보기 ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git commit
설명 보기 ▼
git commit
Commit files to the repository.
git commit
Open an editor to write a message and commit staged files to the repository:
git commit {{[-m|--message]}} "{{message}}"
Commit staged files to the repository with the specified message:
git commit {{[-F|--file]}} {{path/to/commit_message_file}}
Commit staged files with a message read from a file:
git push
설명 보기 ▼
git push
Push commits to a remote repository.
git push
Send local changes in the current branch to its default remote counterpart:
git push {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart:
git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:
