博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git提交项目到已有库
阅读量:5313 次
发布时间:2019-06-14

本文共 916 字,大约阅读时间需要 3 分钟。

借鉴地址:

Git global setup
git config --global user.name "张衍涛"git config --global user.email "839420539@qq.com"

 

Create a new repository
git clone http://192.168.1.202:8060/guodun-online/online.gitcd onlinetouch README.mdgit add README.mdgit commit -m "add README"git push -u origin master

 上传项目

跟踪项目文件夹中的所有文件和文件夹

git add .

输入本次的提交说明,准备提交暂存区中的更改的已跟踪文件,单引号内为说明内容

git commit -m 'first_commit'

关联远程仓库,添加后,远程库的名字就是 origin,这是 Git 默认的叫法,也可以改成别的,但是 origin 这个名字一看就知道是远程库。

git remote add origin https:xxxx.git

如果关联出现错误 fatal: remote origin already exists,则执行下列语句再进行关联

git remote rm origin

把本地库的所有内容推送到远程库上

git push -u origin master

如果在推送时出现错误 error:failed to push som refs to.......,则执行下列语句

git pull origin master

将远程仓库 Github 上的文件拉下来合并之后重新推送上去

执行最后一个语句仍然报错:

fatal: refusing to merge unrelated histories

通过以下语句修复(可能是新版git的问题):

git pull origin master --allow-unrelated-histories

 

转载于:https://www.cnblogs.com/of-course/p/11577318.html

你可能感兴趣的文章
面对问题,如何去分析?(日报问题)
查看>>
数据分析-业务知识
查看>>
nodejs vs python
查看>>
poj-1410 Intersection
查看>>
Java多线程基础(一)
查看>>
TCP粘包拆包问题
查看>>
Java中Runnable和Thread的区别
查看>>
SQL Server中利用正则表达式替换字符串
查看>>
POJ 1015 Jury Compromise(双塔dp)
查看>>
论三星输入法的好坏
查看>>
Linux 终端连接工具 XShell v6.0.01 企业便携版
查看>>
JS写一个简单日历
查看>>
Python 发 邮件
查看>>
mysql忘记密码的解决办法
查看>>
全面分析Java的垃圾回收机制2
查看>>
[Code Festival 2017 qual A] C: Palindromic Matrix
查看>>
修改博客园css样式
查看>>
Python3 高阶函数
查看>>
初始面向对象
查看>>
leetcode Letter Combinations of a Phone Number
查看>>