git常用命令
config user
git config --global user.name "dobefore"
git config --global user.email 1432338032@qq.com
Tag
create local taggit tag 0.1.2
push tag to remotegit push origin 0.1.2
fetch and checkout to other people’s pull request
#To fetch a remote PR into your local repo,
git fetch origin pull/PRID/head:BRANCHNAME
git checkout BRANCHNAME
- Post title:git常用命令
- Post author:冬柠
- Create time:2022-04-01 09:57:58
- Post link:git-commonly-used-command/
- Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.