// 添加目录下所有文件到本地仓库
git add .
// 关联github仓库
git remote add origin git@github.com:xxxxxx/project.git
// 此次变更注释
git commit -m '注释'
// 推到远程仓库
git push -u origin master
// 合并远程仓库和本地仓库,并推送变更
git pull origin master
// 添加目录下所有文件到本地仓库
git add .
// 关联github仓库
git remote add origin git@github.com:xxxxxx/project.git
// 此次变更注释
git commit -m '注释'
// 推到远程仓库
git push -u origin master
// 合并远程仓库和本地仓库,并推送变更
git pull origin master
本文标题:上传文件到github命令
本文链接:https://www.haomeiwen.com/subject/cwjsiftx.html
网友评论