git的基本使用

第一步,创建SSH Key

ssh-keygen -t rsa -C "youremail@example.com"

第二步,git操作推送本地工程到远程服务器

git init
git add .
git commit -m "first commit"
git remote add origin 仓库地址
git push -u origin master

作者: 元宝爸爸

出处:https://www.cnblogs.com/wozixiaoyao/p/11965398.html

版权:本文采用「署名-非商业性使用-相同方式共享 4.0 国际」知识共享许可协议进行许可。

觉得文章不错,点个关注呗!

原文地址:https://www.cnblogs.com/xinrong2019/p/6337603.html