-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathTag.bat
More file actions
55 lines (46 loc) · 1.37 KB
/
Tag.bat
File metadata and controls
55 lines (46 loc) · 1.37 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
55
REM - Script to tag all the git repositories
REM - This is the tag that will be applied to the repository
REM - for official releases, use version_x.y.z version
REM - for beta releases, use x.y.z_beta_n
REM SET TAG=version_9.0.1.1
REM git tag %TAG% isn't working so the tags are explicit... use search/replace to update in all places
cd \ARP\BEToolbox\
git commit -a -m "Updated version numbers for 9.0.1.1 release"
git tag version_9.0.1.1
git push
git push --tags
cd \ARP\BEToolboxExtensions\
git commit -a -m "Updated version numbers for 9.0.1.1 release"
git tag version_9.0.1.1
git push
git push --tags
cd \ARP\Barlist\
git commit -a -m "Updated version numbers for 9.0.1.1 release"
git tag version_9.0.1.1
git push
git push --tags
cd \ARP\PGSuper\
git commit -a -m "Updated version numbers for 9.0.1.1 release"
git tag version_9.0.1.1
git push
git push --tags
cd \ARP\PGSuperIfcExtensions\
git commit -a -m "Updated version numbers for 9.0.1.1 release"
git tag version_9.0.1.1
git push
git push --tags
cd \ARP\XBeamRate\
git commit -a -m "Updated version numbers for 9.0.1.1 release"
git tag version_9.0.1.1
git push
git push --tags
cd \ARP\WBFL\
git commit -a -m "Updated version numbers for 9.0.1.1 release"
git tag version_9.0.1.1
git push
git push --tags
cd \ARP\BridgeLink\
git commit -a -m "Updated version numbers for 9.0.1.1 release"
git tag version_9.0.1.1
git push
git push --tags