gaeproxy

(★ 791)

GAEProxy for Android (Deprecated)

파일 탐색기

  • .gitignore
  • .travis.yml
  • AndroidManifest.xml
  • COPYING.txt
  • deploy
  • pom.xml
  • project.properties
  • README.md
  • travis.keystore

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

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:

🔍

mvn install

설명 보기 ▼

Install third-party Maven dependencies and build the project.

mvn install

Compile, test, package, and install the project into the local repository:

mvn install {{[-D|--define]}} skipTests

Skip tests during installation:

mvn install {{[-U|--update-snapshots]}}

Force update of dependencies before installing:

🔍

mvn

설명 보기 ▼

Apache Maven: Java 기반 프로젝트를 빌드하고 관리.
더 많은 정보: <https://manned.org/mvn>.

mvn compile

프로젝트 컴파일:

mvn package

컴파일된 코드를 `jar`와 같은 배포 가능한 형식으로 패키지:

mvn package {{[-D|--define]}} skipTests

유닛 테스트를 건너뛰고 컴파일 및 패키지:

🔍

popd

설명 보기 ▼

`pushd` 셸 내장 명령어를 통해 디렉토리 스택에 올려놓은 디렉토리를 제거.
관련 항목: `pushd`, `dirs`.
더 많은 정보: <https://www.gnu.org/software/bash/manual/bash.html#index-popd>.

popd

스택의 최상위 디렉토리를 제거하고 해당 디렉토리로 이동:

popd

스택의 가장 위에 있는 디렉토리로 전환:

popd +N

N번째 디렉토리 제거 (왼쪽에서 0부터 시작, `dirs`로 출력된 목록 기준):

🔍

pushd

설명 보기 ▼

디렉터리를 스택에 쌓아 나중에 접근할 수 있도록 합니다.
관련 항목: `popd`, `dirs`.
더 많은 정보: <https://www.gnu.org/software/bash/manual/bash.html#index-pushd>.

pushd {{path/to/directory}}

디렉터리로 이동하고 스택에 추가:

pushd {{path\to\directory}}

디렉토리로 전환하고 스택에 배치:

pushd

스택의 첫 번째와 두 번째 디렉터리를 전환:

// repository documentation