-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathupdate.bat
More file actions
54 lines (54 loc) · 1.03 KB
/
update.bat
File metadata and controls
54 lines (54 loc) · 1.03 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
rem first install GIT Bash
rem then add C:\Program Files\Git\bin to the environment variable PATH and reboot you PC
set VisualStudioVersion=2012
set VisualStudioName=Visual Studio %VisualStudioVersion%
cd \
cd %userprofile%
cd "Documents"
cd %VisualStudioName%
cd "Projects"
echo Press a key to update all choosen git repositories if you're in the correct directory otherwise press CTRL-C to cancel
pause
cd AddFeatures
git pull origin master
cd ..
cd CodeGeneration
git pull origin master
cd ..
cd PaperBoy
git pull origin master
cd ..
cd fredatgithub.github.io
git pull origin master
cd ..
cd MyFavoriteQuotes
git pull origin master
cd ..
cd WinFormTemplate
git pull origin master
cd ..
cd UsefulFunctions
git pull origin master
cd ..
cd YouTubeVideoName
git pull origin master
cd ..
cd CharacterPermutations
git pull origin master
cd ..
cd MRUManager
git pull origin master
cd ..
cd uptime
git pull origin master
cd ..
cd Matrix
git pull origin master
cd ..
cd Chronometre
git pull origin master
cd ..
cd GitAutoUpdate
git pull origin master
cd ..
pause