欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

如何将代码上传到github

程序员文章站 2024-01-12 16:29:52
...

代码上传到github

git init
git add 文件名
git commit -m "日志"
ssh-****** -t rsa -C "邮箱账号" //build ssh key, generally cache C
git remote add origin 仓库名.git //connection remote repo
git push -u origin master // upload
git pull origin master // download