gaeproxy

(★ 791)

GAEProxy for Android (Deprecated)

File Explorer

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

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

git clone

View Details ▼

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

View Details ▼

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

View Details ▼

Apache Maven: build and manage Java-based projects.

mvn compile

Compile a project:

mvn package

Compile and package the compiled code in its distributable format, such as a `jar`:

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

Compile and package, skipping unit tests:

🔍

popd

View Details ▼

Remove a directory placed on the directory stack via the `pushd` shell built-in.
See also: `pushd`, `dirs`.

popd

Remove the top directory from the stack and cd to it:

popd

Switch to directory at the top of the stack:

popd +N

Remove the Nth directory (starting from zero to the left from the list printed with `dirs`):

🔍

pushd

View Details ▼

Place a directory on a stack so it can be accessed later.
See also: `popd`, `dirs`.

pushd {{path/to/directory}}

Switch to directory and push it on the stack:

pushd {{path\to\directory}}

Switch to directory and push it on the stack:

pushd

Switch first and second directories on the stack:

// repository documentation