美文网首页
Mac使用终端将本地已有项目添加到云端管理库

Mac使用终端将本地已有项目添加到云端管理库

作者: 倒着游的鱼 | 来源:发表于2018-06-29 13:32 被阅读0次

    1.是否构建 本地 git

    • 如果本地没有构建 git
    - 打开终端 -> cd 到工程目录
     - git init  ( 初始化 git )
     - git add .   ( 添加所有文件到 git )
     - git commit -m "first commit"  ( 提交到本地仓库 )
    
    • 如果本地已经构建 git
    - git commit -m "last commit"  ( 提交到本地仓库 )
    
    2. 在 GitHub 上新建一个空项目 , 不需要 添加ignore和readme文件
    3. 复制在 云端 上创建好的项目地址 (https://github.com/(/(项目名).git)
    4. 添加远程仓库
    - git remote add origin https://github.com/(用户名)/(项目名).git)
    

    5.提交到远程仓库

    - git push -u origin master
    

    git设置邮箱和用户名

    有时候提交项目时会提示

    Please tell me who you are.
    
    - git config --global user.email "you@example.com"
    - git config --global user.name "Your Name"
    

    注意email和name后面有空格


    注:
    如果输入$ Git remote add origin git@github.com:djqiang(github帐号名)/gitdemo(项目名).git
    解决办法:
    转自https://www.jianshu.com/p/368f6c6a5112

    提示出错信息:fatal: remote origin already exists.
    
    解决办法如下:
    
    1、先输入$ git remote rm origin
    
    2、再输入$ git remote add origin git@github.com:djqiang/gitdemo.git 就不会报错了!
    
    3、如果输入$ git remote rm origin 还是报错的话,error: Could not remove config section 'remote.origin'. 我们需要修改gitconfig文件的内容
    
    4、找到你的github的安装路径,我的是C:\Users\ASUS\AppData\Local\GitHub\PortableGit_ca477551eeb4aea0e4ae9fcd3358bd96720bb5c8\etc
    
    5、找到一个名为gitconfig的文件,打开它把里面的[remote "origin"]那一行删掉就好了!
    

    相关文章

      网友评论

          本文标题:Mac使用终端将本地已有项目添加到云端管理库

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