我想通過使用git bash(msysgit)將unix樣式路徑傳遞給Android adb命令,但shell正在錯誤地解釋我的路徑。這是我迄今爲止所嘗試的:如何通過git bash for windows將絕對路徑傳遞給adb命令?
$ adb push myfile /mnt/sdcard/
failed to copy 'myfile' to 'C:/Program Files (x86)/Git/mnt/sdcard/': No such file or directory
$ adb push myfile "/mnt/sdcard/"
failed to copy 'myfile' to 'C:/Program Files (x86)/Git/mnt/sdcard/': No such file or directory
$ adb push myfile '/mnt/sdcard/'
failed to copy 'myfile' to 'C:/Program Files (x86)/Git/mnt/sdcard/': No such file or directory
什麼是正確的方法來做到這一點?
您是否在「cmd」(dos-prompt)中嘗試了相同的操作?我認爲它會在那裏工作 – trans1st0r 2013-05-03 11:31:01
@DevJyotiBehera是的,我確實用windows cmd提示符來嘗試它,它確實有效,但我試圖找出它爲什麼不能用於msysgit。我想了解路徑和引用在這裏工作的方式。 – 2013-05-03 21:14:44
您是否檢查過http://stackoverflow.com/q/11519659/1983854?另外,'ls/mnt/sdcard /'是否工作?查看它是否正確檢測路徑。 – fedorqui 2013-06-17 11:16:50