1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| $ opkg update $ opkg install git $ git config --global user.name "sstutu" $ git config --global user.email "[email protected]" $ git clone https://github.com/abi/screenshot-to-code.git Cloning into 'screenshot-to-code'... git: 'remote-https' is not a git command. See 'git --help'. $ git clone https://github.com/abi/screenshot-to-code.git Cloning into 'screenshot-to-code'... git: 'remote-https' is not a git command. See 'git --help'. $ opkg install git-http $ git clone https://github.com/abi/screenshot-to-code.git Cloning into 'screenshot-to-code'... remote: Enumerating objects: 3695, done. remote: Counting objects: 100% (1017/1017), done. remote: Compressing objects: 100% (182/182), done. remote: Total 3695 (delta 902), reused 890 (delta 834), pack-reused 2678 Receiving objects: 100% (3695/3695), 1.92 MiB | 3.36 MiB/s, done. Resolving deltas: 100% (2656/2656), done.
|