adb, adb-reverse: add polish translation (#4901)

This commit is contained in:
Krzysztof Bociurko
2020-11-01 14:16:14 +01:00
committed by GitHub
parent c4f0a3f2e0
commit 396dfa0ce1
2 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# adb reverse
> Android Debug Bridge Reverse: zwrotne połączenie socketowe z emulowanego lub prawdziwego urządzenia Android.
> Więcej informacji: <https://developer.android.com/studio/command-line/adb>.
- Listuj wszystkie zwrotne połączenia socketowe z emulatorów i urządzeń:
`adb reverse --list`
- Przekieruj port TCP z emulatora lub urządzenia do localhost:
`adb reverse tcp:{{remote_port}} tcp:{{local_port}}`
- Usuń wybrane zwrotne połączenie z emulatora lub urządzenia:
`adb reverse --remove tcp:{{remote_port}}`
- Usuń wszystkie zwrotne połączenie z emulatorów lub urządzeń:
`adb reverse --remove-all`