This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
get-source.cmd
36 lines (27 loc) · 1.53 KB
/
get-source.cmd
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
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/libplist
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/libusbmuxd
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/libimobiledevice
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/libideviceactivation
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/ideviceinstaller
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/libirecovery
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/idevicerestore
git clone --single-branch --branch master-msvc https://github.com/libimobiledevice-win32/usbmuxd
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/ios-webkit-debug-proxy
echo "libplist revision:"
git -C libplist 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 "usbmuxd revision:"
git -C usbmuxd rev-parse HEAD
echo "ios-webkit-debug-proxy revision:"
git -C ios-webkit-debug-proxy rev-parse HEAD