repo.or.cz
/
nasm
/
avx512.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
NASM 2.00rc3
[nasm/avx512.git]
/
misc
/
tagrelease
blob
4cf44c7035720fd8ad67f99697a7043d2940d1e7
1
#!/bin/sh
2
#
3
# Usage: tagrelease version
4
#
5
6
if
[
-z
"
$1
"
];
then
7
echo
"Usage:
$0
version"
1
>&
2
8
exit
1
9
fi
10
11
echo
"
$1
"
>
version
12
git add version
13
git commit
-m
"NASM
$1
"
14
git tag
-m
"NASM
$1
"
-a
nasm-
"
$1
"
15