Git命令行操作本地库初始化进入文件夹
12git init注意:生成的 .git 目录中存放的是本地库相关文件,不要删除
设置签名这里设置的签名和GitHub中的用户,密码没有关系。
项目(仓库)级别仅在当前本地库有效
12git config user.name tom #设置用户名tomgit config user.email liu@qq.com #设置用户邮箱
系统用户级别仅在当前登录的操作系统用户有效
12git config --global user.name tomgit config --global user.email liu@qq.com
仅仅加了...