美文网首页
git 初次提交本地项目到远程

git 初次提交本地项目到远程

作者: buchuqi2677 | 来源:发表于2017-07-18 12:02 被阅读0次

    在 gitlab中创建新项目

    20161221101832138.png
    创建好之后会生成一个.Git路径

    切换会本地工程文件目录

    1 右键 点击git bash
    
    2 在git bash 里面执行git init 初始化
    
    3 git add .  提交当前
    
    4 git commit -m "init commit"
    

    添加远程关联

    git remote add origin 你新建项目时候的远程git 地址
    

    推送到远程仓库

    git push --set-upstream origin master
    

    上面都完成后会得到如下:

    1 产生本地分支master

    2.与本地仓库关联的远程仓库origin

    3.与本地分支关联的远程分支master

    4.本地代码全部提交到了远程仓库,其他人可以共享了

    刷新gitlab查看提交的项目

    git 在android studio中重新关联远程仓库地址的方法

    1.修改命令

     [Git](http://lib.csdn.net/base/git) remote set-url origin [url] 例如:[git](http://lib.csdn.net/base/git) remote set-url origin gitlab@gitlab.chumob.com:[PHP](http://lib.csdn.net/base/php)/hasoffer.git
    

    2.先删后加

     git remote rm origin git remote add origin [url]
    

    3.直接修改config文件

    [core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates = true symlinks = false ignorecase = true[remote "origin"] url = https://github.com/sunsteam/android-zxingLibrary.git fetch = +refs/heads/*:refs/remotes/origin/*[branch "master"] remote = origin merge = refs/heads/master
    

    初次提交代码到github
    http://1ke.co/course/194

    用android studio 初次提交代码到github
    http://www.jianshu.com/p/aa341d691658

    问题:
    fatal: unable to access 'https://github.com/buchuqi/JDApp.git/': The requested URL returned error: 504

    相关文章

      网友评论

          本文标题:git 初次提交本地项目到远程

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