如何用命令将本地项目上传到Github
2021-07-01 21:03
标签:本地仓库 name font pos ... sts des 文件夹 仓库 每次想要将做好的项目上传到gitbub的时候,都会忘记上次是这么上传的,那只能记下来咯 1.先在github上New repository,写上Repository name,并description一下这个仓库是干嘛的,注意要在Initialize this repository with a README打勾,这样就创建好仓库了; 2.在本地git上利用git clone将远程仓库克隆到本地仓库; 3.将要上传的文件放在克隆下来的文件夹 4.git add dir/files(文件夹名),如果是想把全部的文件夹一块上传,可用命令git add -A 5.git commit -m‘ .... ‘ 6.git remote add origin ...(远程仓库的地址) 。如:git remote rm origin git@github.com:laoguigui/widgets.git 7.如果远程仓库里有将要上传的文件,会提示fatal: remote origin already exists。这时就要git remote rm origin,重新git remote add origin 8.最后git push -u origin master 如何用命令将本地项目上传到Github 标签:本地仓库 name font pos ... sts des 文件夹 仓库 原文地址:http://www.cnblogs.com/laoguigui/p/7132068.html
下一篇:HTML WebSocket
文章标题:如何用命令将本地项目上传到Github
文章链接:http://soscw.com/index.php/essay/100476.html