Proxy 環境で、repo コマンド実行時に下記のようなエラーが出る場合、
$ repo init -u https://android.googlesource.com/platform/manifest
...
Get https://android.googlesource.com/tools/repo
fatal: branch 'stable' has not been signed
以下のように http でアクセスように変更すればうまくいくことがあります。
REPO_URL='https://android.googlesource.com/tools/repo'
↓
REPO_URL='http://android.googlesource.com/tools/repo'
$ export http_proxy=http://example.com:8080/
$ repo init -u http://android.googlesource.com/platform/manifest