月度归档: 2022年5月

15 篇文章

thumbnail
Git 相关知识点
git 仓库初始化 git init  仓库名 配置邮箱和作者信息 git config --global user.email "zhang @zhang.mba" git config --global user.name "zhang" 添加 git add 文件名 或 ./* 提交 git commit -m "提交说明注释"  …