Git
振哥在,世界充满爱!
计划+坚持!+思考
展开
-
git 上传本地代码到gitee的指令操作
git statusgit add .git remote add origin https://gitee.com/chz367/point_h5.gitgit config --global user.name "chz367"git config --global user.email"chz_367@163.com"git initgit remote add origin https://gitee.com/chz367/point_h5.gitgit pull https://g.原创 2020-06-24 09:10:35 · 708 阅读 · 0 评论 -
Git的master没有了:default branch is set to “refs/heads/master” but does not exist. Contact your
问题:The default branch is set to "refs/heads/master" but does not exist. Contact your project administrator to change the default branch.问题描述:在Git中由于误操作把master分支给删掉了。当提交代码时会发现没有master,且提示上边的问题信息。解决方法:...原创 2018-05-10 23:26:31 · 12419 阅读 · 0 评论 -
Git操作异常:Another git process semms to be running in this repository, e.g. an editor opened by ‘git co
在执行Git操作是报出下面的异常信息:Another git process semms to be running in this repository, e.g. an editor opened by ‘git commit’. Please make sure all processes are terminated then try again. If it still fails, a...原创 2018-06-11 21:18:59 · 688 阅读 · 0 评论 -
Git中 modified: .idea/workspace.xml 问题
在使用idea进行提交代码时,执行提交时一直出现modified: .idea/workspace.xml 非常让人烦恼。问题原因: 原因在于Git的忽略,Git在同步代码时,设置本地忽略文件的前提是,必须保证Git的远程端仓库中没有这个要忽略的文件。当远端包含有该文件时,本地设置的ignore将不再发挥作用。解决方法: 在本地的.gitignore文件里面添加上....原创 2018-06-13 21:29:07 · 15455 阅读 · 6 评论 -
git学习笔记-安装&创建版本库
一、安装1、Debian或Ubuntu Linux 安装指令:sudo apt-get install git2、其他Linux版本安装:./configmakesudo make install3、在Mac OS X上按照Git两种方式:1)直接使用homebrew进行安装 地址:https://brew.sh/2)在 AppStore下载Xcode,通过...原创 2018-12-16 23:11:27 · 185 阅读 · 0 评论 -
Git学习笔记-基本操作
1、当前状态查看git status查看当前仓库的状态。主要是系统或文件中被修改,但是没有提交的文件。如果想查看具体修改的内容,使用:git diff2、查看历史记录历史详细版本信息:git log历史简约版本信息:git log --pretty=online简约版本信息例如:c*19342e35***********e208e8454b0f080...原创 2018-12-16 23:19:07 · 228 阅读 · 0 评论 -
Git学习笔记-从远端克隆&分支管理
一、从远端克隆创建SSH Key查看有没有.ssh文件,如果有再次查看该文件下有没有id.rsa和id.rsa.pub两个文件。其中id.rsa是私钥,id.rsa.pub是公钥从远程库克隆git clone支持两种格式:ssh://git@git.sankuai.com/...http://cuihongzhen@git.sankuai.com/...二、分...原创 2018-12-16 23:31:17 · 317 阅读 · 0 评论 -
Git学习笔记-标签管理
1、标签是版本库的快照,版本号commit可以移动,但是标签不会。创建和删除标签是瞬间完成的。2、创建标签git tag v1.0查看标签git tag创建标签默认的是给最新的commit上加标签。给历史标签添加标签,步骤:(1)找到历史提交的版本号git log --pretty=online olddev(2)给历史提交的版本加上标签git tag v...原创 2018-12-16 23:32:18 · 238 阅读 · 0 评论