克隆指定分支
git clone -b --depth=1 <分支名称> <仓库地址>
说明:--depth=1
表示只克隆最近一次commit的分支完整内容,这样克隆的项目就不会很大
关闭git输出信息分页器
git config --global --replace-all core.pager "less -F -X"
删除全局配置
git config --global --unset user.name
编辑全局配置
git config --global --edit
查看提交的具体内容
git show commit_id
删除所有远程标签
git show-ref --tag | awk '{print ":" $2}' | xargs git push origin
删除所有本地标签
git tag -l | xargs git tag -d
文章作者:DOTATONG
发布日期:2024-08-19
评论