1
0
mirror of https://github.com/google/adb-sync.git synced 2026-01-03 09:58:01 +00:00

Add trailing slash to sources; this is more rsync-like.

This commit is contained in:
Rudolf Polzer
2014-09-08 09:29:03 +02:00
parent bac9159956
commit a01bf3b565

View File

@@ -72,20 +72,20 @@ adb-sync --help
To synchronize your music files from ~/Music to your device, type:
```
adb-sync ~/Music /sdcard/Music
adb-sync ~/Music/ /sdcard/Music
```
To synchronize your music files from ~/Music to your device, deleting files you
removed from your PC, type:
```
adb-sync --delete ~/Music /sdcard/Music
adb-sync --delete ~/Music/ /sdcard/Music
```
To copy all downloads from your device to your PC, type:
```
adb-sync --reverse /sdcard/Download ~/Downloads
adb-sync --reverse /sdcard/Download/ ~/Downloads
```
Contributing