博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用git将代码推到coding
阅读量:6847 次
发布时间:2019-06-26

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

1:前提下载好Git

2:在电脑上创建一个文件夹,打开此文件夹,单击右键—〉 git bash here

3:输入git init

完成后会在此文件夹下生成一个隐藏的.git后缀文件

4:将你的代码添加并提交到本地仓库

git add .  ----> 所有文件

或 git add 《文件名》

git commit -m "项目描述"

5:将仓库代码推到线上coding(需要先获取远程仓库地址)

git remote add origin https:// git.coding.net/用户名/项目名.git

git push origin master

问题:

需要账号和密码

2:出现如下错误

hint: Updates were rejected because the remote contains work that you dohint: not have locally. This is usually caused by another repository pushinghint: to the same ref. You may want to first integrate the remote changeshint: (e.g., 'git pull ...') before pushing again.hint: See the 'Note about fast-forwards' in 'git push --help' for details.

 

方法:

1:git pull

Administrator@Jassin MINGW64 ~/Desktop/git (master)$ git pullwarning: no common commitsremote: Counting objects: 5, done.remote: Compressing objects: 100% (2/2), done.remote: Total 5 (delta 0), reused 0 (delta 0)Unpacking objects: 100% (5/5), done.From https://git.coding.net/dujassin/fristdemo * [new branch]      master     -> origin/masterThere is no tracking information for the current branch.Please specify which branch you want to merge with.See git-pull(1) for details.    git pull 
If you wish to set tracking information for this branch you can do so with: git branch --set-upstream-to=origin/
master

2:操作如上提示:

git pull 
$ git pull --rebase origin masterFrom https://git.coding.net/dujassin/fristdemo * branch            master     -> FETCH_HEADFirst, rewinding head to replay your work on top of it...Applying: one

再:

$ git push -u origin master

 

 

 

 

 

转载于:https://www.cnblogs.com/jassin-du/p/9404128.html

你可能感兴趣的文章
航空制造业信息化顶层架构部分成果展示
查看>>
httpServletRequest中的流只能读取一次的原因
查看>>
iOS10以后相机、相册等授权问题
查看>>
转:iptables防火墙原理详解
查看>>
MySLQ排序后标记排行
查看>>
RAID
查看>>
【高德地图API】从零开始学高德JS API(六)——坐标转换
查看>>
Redis之Ubuntu开机启动
查看>>
跟JBPM学设计模式之抽象工厂模式
查看>>
mysql配置允许外界连接
查看>>
最全的Markdown语法
查看>>
正则表达式
查看>>
Angular企业级开发(1)-AngularJS简介
查看>>
如何查看自己电脑系统的安装日期-Window上
查看>>
继承Runnable 实现Synchronized 同步锁
查看>>
好书推荐
查看>>
tomcat 连接数设置(转)
查看>>
linux下定时执行任务的方法
查看>>
Activity 之生命周期
查看>>
Windows压缩包安装MySQL
查看>>