博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Git and GitHub
阅读量:5949 次
发布时间:2019-06-19

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

1.GitHub 创建一个仓库

2.进入本地要管理的某个文件夹下,感觉目录的操作命令和linux里面差不多,

  $git init

此时该文件下就会多出一个.git的文件

3.进入要上传的仓库,右键git bash,添加远程地址

  $ git remote add origin git@github.com:yourName/yourRepo.git

(默认都是用origin,所以就用origin,免得自己记不得了)

4.接下来在本地仓库里添加一些文件,比如README
  $ git add README
  $ git commit -m "first commit"

5.上传到github 

  $ git push origin master

6.从github上面下载下来

 

  $git clone https://github.com/luqiao/LeetCode.git

  • attendion:如果有冲突的话,可以先git pull一下

  $ git pull origin master

 

1.问题情境:commit代码以后没有进行push就放在那里,今天修改了新的模块以后,上传代码时出现了如下错误:

 

commit is not possible because you have unmerged files

 

hint: Fix them up in the work tree,

hint: and then use 'git add/rm <file>' as
hint: appropriate to mark resolution and make a commit,
hint: or use 'git commit -a'.
fatal: Exiting because of an unresolved conflict.

 

原因分析:新修改功能后的文件与原来commit未push的文件存在冲突,需要将修改后的文件手动加入到文件push队列中。

 

解决办法: 使用git add [filename] 将差异文件添加进去。也可以先使用git status (git status命令可以列出当前目录所有还没有被git管理的文件和被git管理且被修改但还未提交(git commit)的文件.)查看差异文件,然后按照自己的需求进行操作。

 

 
 

 

转载于:https://www.cnblogs.com/luluqiao/p/5869817.html

你可能感兴趣的文章
Hello world travels in cpp - 字符串(2)
查看>>
springMVC笔记系列(10)——CookieValue注解
查看>>
Spring框架笔记(六)——Spring IOC容器Bean之间的继承与依赖关系
查看>>
struts2自定义拦截器
查看>>
Eclipse安装adt插件后之后看不到andorid manger
查看>>
Kafka服务端脚本详解(1)一topics
查看>>
Zookeeper 集群安装配置,超详细,速度收藏!
查看>>
js中var self=this的解释
查看>>
js--字符串reverse
查看>>
面试题
查看>>
Facebook 接入之获取各个配置参数
查看>>
android ant Compile failed; see the compiler error
查看>>
ios webView 加载pdf
查看>>
PHP开源订餐系统
查看>>
Single Number
查看>>
linux分区问题
查看>>
MYSQL_使用外键约束(constraint)或触发器(trigger)来进行级联更新、删除
查看>>
Maven构建web项目在Eclipse中部署的几种方法
查看>>
[多文件上传三]利用UrlEncodedFormEntity表单实现
查看>>
左边邮件类型
查看>>