Jak se v gitu přepnout na verzi s posledním tagem?
#!/bin/bash
...
latesttag=$(git describe --tags)
echo checking out ${latesttag}
git checkout ${latesttag}
Jak se v gitu přepnout na verzi s posledním tagem?
#!/bin/bash
...
latesttag=$(git describe --tags)
echo checking out ${latesttag}
git checkout ${latesttag}