-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathget-source.cmd
More file actions
40 lines (30 loc) · 1.7 KB
/
get-source.cmd
File metadata and controls
40 lines (30 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/libplist
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/libusbmuxd
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/libimobiledevice
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/libideviceactivation
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/ideviceinstaller
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/libirecovery
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/idevicerestore
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/ios-webkit-debug-proxy
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/libimobiledevice-glue
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/libtatsu
echo "libplist revision:"
git -C libplist rev-parse HEAD
echo "libimobiledevice-glue revision:"
git -C libimobiledevice-glue rev-parse HEAD
echo "libtatsu revision:"
git -C libtatsu rev-parse HEAD
echo "libusbmxud revision:"
git -C libusbmuxd rev-parse HEAD
echo "libimobiledevice revision:"
git -C libimobiledevice rev-parse HEAD
echo "libideviceactivation revision:"
git -C libideviceactivation rev-parse HEAD
echo "ideviceinstaller revision:"
git -C ideviceinstaller rev-parse HEAD
echo "libirecovery revision:"
git -C libirecovery rev-parse HEAD
echo "idevicerestore revision:"
git -C idevicerestore rev-parse HEAD
echo "ios-webkit-debug-proxy revision:"
git -C ios-webkit-debug-proxy rev-parse HEAD