This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb help // List all comands | |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// HTTP Client GET | |
// Usage: jshell --add-modules jdk.incubator.httpclient http-get.jsh | |
import jdk.incubator.http.* | |
var client = HttpClient.newHttpClient() | |
var request = HttpRequest.newBuilder().uri(new URI("https://medium.com/adambgoode")).build() | |
var response = client.send(request, HttpResponse.BodyHandler.asString()) | |
System.out.println(response.body()) | |
/exit |
A downstream repository (aka a “fork”) maintainer commonly needs to stay current with upstream work (aka "original"). The case is development continues on the upstream
repo while you work on your own origin
fork. You want to fetch
the upstream changes and apply them to your origin
so you don't make conflicts.
The following steps allow you to achieve this on the command line in a local git repository.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hola como van |