一、GIT下载代码
bash
git clone xxx.git
二、Git上传代码
- 修改代码后,查看所有的修改项目。
bash
git status
- 将所有修改的项目添加到本地
bash
git add .
- 添加代码提交备注信息
bash
git commnit -m "xxxxxxxx"
- 提交代码到远程服务器
c
git push -u origin master
三、打TAG
Git打标签(tag)是为了标记特定的开发点,比如版本发布。以下是如何使用git命令打标签的步骤:
- 创建轻量级标签:
bash
git tag <tagname>
- 创建带有注释的标签:
bash
git tag -a <tagname> -m "<message>"
- 列出所有标签:
bash
git tag
- 推送特定标签到远程仓库:
bash
git push origin <tagname>
- 推送所有本地标签到远程仓库:
bash
git push --tags
- 删除本地标签:
bash
git tag -d <tagname>
- 删除远程标签:
首先删除本地标签,然后:
bash
git push --delete origin <tagname>
检出标签:
bash
git checkout <tagname>
例如,创建一个带注释的v1.0.0标签:
bash
git tag -a v1.0.0 -m "Release version 1.0.0"
然后将其推送到远程仓库:
bash
git push origin v1.0.0