Git命令行方式上传项目

    xiaoxiao2021-03-25  51

    原来一直是直接通过IDE自带的Git功能上传项目的,但是今天不知道为什么IDE突然抽风了,怎么也PUSH不上去,没办法,只好通过命令行的方式上传了。。。。下面记录一下使用命令的方式上传项目的步骤:

    因为是第一次使用,所以先要通过下面的两个命令来对Git进行一个基础的配置:

    root@lsj-pc:/home/lsj/文档/water-cup# git config --global user.email "your email address" root@lsj-pc:/home/lsj/文档/water-cup# git config --global user.name "your name" 1. root@lsj-pc:/home/lsj# git init 2.切换目录

    root@lsj-pc:/home/lsj# cd /home/lsj/文档/water-cup 3.

    root@lsj-pc:/home/lsj/文档/water-cup# git add . 4.

    root@lsj-pc:/home/lsj/文档/water-cup# git commit -m "first push" 5.

    root@lsj-pc:/home/lsj/文档/water-cup# git remote add origin https://git.coding.net/xxx/xxx.git 6.

    root@lsj-pc:/home/lsj/文档/water-cup# git push -u origin master 此时会提示你输入用户名以及密码 Username for 'https://git.coding.net': xxxxx Password for 'https://littleWhiteJ@git.coding.net':xxxx   但是在上传的过程中出现了一点小问题:

    error: 无法推送一些引用到 'https://git.coding.net/littleWhiteJ/water--cup.git' 提示:更新被拒绝,因为远程仓库包含您本地尚不存在的提交。这通常是因为另外 提示:一个仓库已向该引用进行了推送。再次推送前,您可能需要先整合远程变更 提示:(如 'git pull ...')。 提示:详见 'git push --help' 中的 'Note about fast-forwards' 小节。 不管它,暴力一点直接强制Push

    root@lsj-pc:/home/lsj/文档/water-cup# git push -u origin +master

    Over~

    转载请注明原文地址: https://ju.6miu.com/read-34713.html

    最新回复(0)