git
文章平均质量分 59
qq_38969618
这个作者很懒,什么都没留下…
展开
-
解决:Vscode中的git突然不显示,报错:gitLens can‘t find the git pah, xcrun: error: active developer path doesn‘t x
Mac上安装的Xcode软件导致原创 2023-12-07 10:59:14 · 1920 阅读 · 0 评论 -
Git的基本操作&常见问题
git的基本操作流程5步:(1)初始化(注意在项目目录内,生成.git隐藏目录):git init(2)配置用户名和密码:git config --global user.name "name" git config --global user.email "email"(3)将文件区的内容添加到暂存区:添加所有:git add .或git add --all添加单...原创 2019-12-02 13:50:35 · 109 阅读 · 0 评论