本文用于记录一些Git命令。
bash# 设置本地(本仓库)用户名为:xxx
git config user.name xxx
# 设置本地(本仓库)用户邮箱为:[email protected]
git config user.email [email protected]
# 设置本地全局用户名为:xxx
git config --global user.name xxx
# 设置本地全局用户邮箱为:[email protected]
git config --global user.email [email protected]
bash# 将当前文件夹中的所有文件添加到git版本控制中
git add .
# 将当前文件夹中的 readme.md 文件添加到git版本控制中
git add readme.md
本文作者:DingDangDog
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!