moodle-tool_mfa

(★ 34)

A Multi-Factor Authentication Moodle plugin with flexible support for TOTP, Email, IP and more

파일 탐색기

  • .gitattributes
  • .gitmodules
  • action.php
  • auth.php
  • factor_report.php
  • guide.php
  • index.php
  • lib.php
  • phpunit.xml
  • README.md
  • renderer.php
  • reset_factor.php
  • settings.php
  • styles.css
  • thirdpartylibs.xml
  • user_preferences.php
  • version.php

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

git am

설명 보기 ▼

Apply patch files and create a commit. Useful when receiving commits via email.
See also: `git format-patch`.

git am {{path/to/file.patch}}

Apply and commit changes following a local patch file:

curl {{[-L|--location]}} {{https://example.com/file.patch}} | git am

Apply and commit changes following a remote patch file:

git am --abort

Abort the process of applying a patch file:

🔍

git cherry-pick

설명 보기 ▼

Apply the changes introduced by existing commits to the current branch.
To apply changes to another branch, first use `git checkout` to switch to the desired branch.

git cherry-pick {{commit}}

Apply a commit to the current branch:

git cherry-pick {{start_commit}}~..{{end_commit}}

Apply a range of commits to the current branch (see also: `git rebase --onto`):

git cherry-pick {{commit1 commit2 ...}}

Apply multiple (non-sequential) commits to the current branch:

🔍

git format-patch

설명 보기 ▼

Prepare `.patch` files. Useful when emailing commits elsewhere.
See also: `git am`.

git format-patch {{origin}}

Create an auto-named `.patch` file for all the unpushed commits:

git format-patch {{revision_1}}..{{revision_2}}

Write a `.patch` file for all the commits between 2 revisions to `stdout`:

git format-patch -{{n}}

Write a `.patch` file for the `n` latest commits:

🔍

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:

🔍

php

설명 보기 ▼

PHP 명령줄 인터페이스.
더 많은 정보: <https://www.php.net/manual/en/features.commandline.options.php>.

php {{path/to/file}}

PHP 스크립트를 구문 분석하고 실행:

php {{[-l|--syntax-check]}} {{path/to/file}}

PHP 스크립트의 문법 검사(즉, 린트):

php {{[-a|--interactive]}}

PHP를 대화형으로 실행:

// repository documentation