美文网首页
创建本地仓库上传到github

创建本地仓库上传到github

作者: f315627d0b06 | 来源:发表于2016-03-19 09:48 被阅读986次

    第一步:建立git仓库

    cd到你的本地项目根目录下,执行git命令

    git init

    第二步:将项目的所有文件添加到仓库中

    git add .

    如果想添加某个特定的文件,只需把.换成特定的文件名即可

    第三步:将add的文件commit到仓库

    git commit -m "注释语句"

    第四步:去github上创建自己的Repository,创建页面如下图所示:

    拿到仓库地址https

    第五步:将本地的仓库关联到Github上

    git remote add origin https://仓库地址

    第六步 上传github之前 要先pull一下 执行如下命令

    git pull origin master

    第七步,上传代码到github远程仓库

    git push -u origin master

    相关文章

      网友评论

          本文标题:创建本地仓库上传到github

          本文链接:https://www.haomeiwen.com/subject/rcshlttx.html