GIT Examples Contributing code to PX4 Update Submodule Do a PR for a submodule update Checkout pull requests Common pitfalls Force push to forked repository Rebase merge confl...
Git tags Listing Your Tags Creating Tags Types Lightweight tags Annotated tags Tagging Later Sharing Later Git tags Listing Your Tags git tag will list all the tags ...
git tag git tag git tag 命令用于为 commit 打标签。Tag 分两种:普通tag和注解tag。只有annotated tag 才會產生 object。 $ git tag tmp # 生成.git/refs/tags/tmp $ git tag - a release $ git tag - a [ VE...