git hub操作

来源:互联网 发布:淘宝刷单工作室赚钱吗 编辑:程序博客网 时间:2024/05/17 02:45


git clone 服务器地址(可以从网页中得到)

git config --global user.name "Your Name"
git config --global user.email you@example.com
全局的通过vim ~/.gitconfig来查看

git config user.name "Your Name"
git config user.email you@example.com
局部的通过当前路径下的 .git/config文件来查看

0 0