gitpush命令

git config --global user.name “xxx” --记得本地计算机上的git要认证正确。

git config --global user.email "[email protected]"

git clone ssh -----clone项目

记得push前 需要先拉。
git pull origin master

//push项目
git add . – "添加到缓存区“

git commint -m ”备注说明"

git push origin master --提交到master链上。

原创文章 25 获赞 10 访问量 1万+

猜你喜欢

转载自blog.csdn.net/weixin_42195162/article/details/89678676