博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Git基本操作
阅读量:6435 次
发布时间:2019-06-23

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

1.创建新项目上传

cd parent_dir //进入项目父目录mkdir gitDemo  //创建项目目录 gitDemocd gitDemo //进入项目目录 git init //初始化空的 git 仓库 touch README.md git add README.md //这两行添加简单的 README.md 文件 git commit -m "first commit" //提交时附加的信息 git remote add origin https://coding.net/codingTutorial/gitDemo.git //添加一个名为 origin 的远端( url 为 git 地址) git push -u origin master //将该目录下的文件推送到远端(origin)上的 "master" 分支

可能会遇到的问题

a.如果是首次使用,会提示你先设置好用户名和邮箱,可以在 cmd 中输入:

  git config --global user.email "you@example.com"

  git config --global user.name "Your Name"

b.git push失败,出现以下提示

 ! [rejected]        master -> master (fetch first)

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

解决方法:

原因:本地版本和主干上的有差异先pull远端的版本,解决了冲突才能push

  git pull -u origin master

然后再

 git push -u origin master

做个小推广:程序员经常久坐,颈椎毛病比较多,特别推荐

转载于:https://www.cnblogs.com/longzhongren/p/4307194.html

你可能感兴趣的文章
python基础学习第一天
查看>>
硬盘存储双寡头之争 希捷重注中国市场或赢大丰收
查看>>
编译安装PHP
查看>>
css position:static 的使用
查看>>
nfs永久挂载与临时挂载
查看>>
linux查看网络链接状况命令之-netstat
查看>>
我的友情链接
查看>>
UIView的layoutSubviews和drawRect方法何时调用
查看>>
mysql主从同步
查看>>
制作最简化的Linux系统
查看>>
我的友情链接
查看>>
使用List的remove方法需要的注意的问题
查看>>
Ansible的介绍、安装、配置及常用模块介绍
查看>>
编码列表
查看>>
eigrp 配置
查看>>
谈一谈 redis 集群
查看>>
concurrent包
查看>>
分区和格式化硬盘
查看>>
在Linux下调试Python代码的各种方法
查看>>
centos7塔建MQ服务器
查看>>