git/svn
smileTimLi
一只站在树上的鸟儿,从来不会害怕树枝断裂,因为它相信的不是树枝,而是它自己的翅膀
展开
-
git 将本地的文件设置成不提交
git update-index --assume-unchanged filters/filter-mine.properties原创 2018-07-16 18:03:03 · 2967 阅读 · 0 评论 -
idea通过git提交取消.idea.iml等的显示
1、idea工具的setting,找到对应的位置2、然后填写如下内容*.hprof;*.idea;*.iml;*.log;*.pyc;*.pyo;*.rbc;*.yarb;*~;.DS_Store;.git;.hg;.svn;CVS;__pycache__;_svn;vssver.scc;vssver2.scc;3、再次通过git提交就不会出现iml等的文件了...原创 2019-08-18 16:30:31 · 6178 阅读 · 0 评论 -
git: Authentication failed for错误解决
1、当电脑有好几个git账号往不同仓库提交时,经常会出现如下错误,而且一直提示,不给输入密码和账号的机会fatal: Authentication failed for解决办法:git config --system --unset credential.helper之后你在push就会提示输入名称和密码2、查询用户信息git config --list...原创 2019-06-18 22:42:44 · 11371 阅读 · 0 评论 -
apache-maven 使用阿里的镜像下载 settings.xml
<?xml version="1.0" encoding="UTF-8"?><!--Licensed to the Apache Software Foundation (ASF) under oneor more contributor license agreements. See the NOTICE filedistributed with this wor...原创 2019-04-02 23:08:15 · 707 阅读 · 0 评论 -
git登录账号密码错误remote: Incorrect username or password
转载自:https://baijiahao.baidu.com/s?id=1622020216177100162&wfr=spider&for=pcgit登录是用户名正确了密码给输入错误了,以为提交的时候会弹出登录窗口,结果这玩意不提示了,直接来个用户名或密码错误remote: Incorrect username or password ( access t...转载 2019-05-16 09:59:57 · 10175 阅读 · 7 评论 -
git 查看本机的ssh公钥,生成公钥,并添加到相应的代码仓库
1.很多服务器都是需要认证的,ssh认证是其中的一种。在客户端生成公钥,把生成的公钥添加到服务器,以后连接服务器就不用每次都输入用户名和密码了。2.很多git服务器都是用ssh认证方式,需要把生成的公钥发送给代码仓库管理员,添加到服务器上,就可以通过ssh自由地拉取和提交代码了!1、查看ssh$ cd ~/.ssh2、查看对应的id_id_rsa.pub的内容...原创 2019-05-16 09:52:46 · 5429 阅读 · 0 评论 -
git 派生子项目、分支和主干和合并
Git中文使用文档:https://git-scm.com/book/zh/v2/原创 2019-03-02 20:24:22 · 10370 阅读 · 0 评论 -
git将本地项目上传到码云
1、(先进入项目文件夹)通过命令 git init 把这个目录变成git可以管理的仓库git init2、把文件添加到版本库中,使用命令 git add .添加到暂存区里面去,不要忘记后面的小数点“.”,意为添加文件夹下的所有文件git add .3、用命令 git commit告诉Git,把文件提交到仓库。引号内为提交说明git commit -m 'first com...原创 2018-11-30 23:07:27 · 160 阅读 · 0 评论 -
git提交切换显示的用户名,切换提交的仓库
公司账号和自己gitee的切换 公司的代码都提交到gitlab,和自己私下用的gitee账号间的切换1.切换提交的git仓库 1.首先通过git remote add origin + 自己要提交的项目的git地址 比如:git remote add origin git@gitee.com:SmileLsf/springcloud.git2.切换用户名,显示自己想显...原创 2018-07-15 10:32:33 · 5068 阅读 · 0 评论