Git basic

1. solve conflict

senario:

  Adam checked out master branch,

  then Bob checked out master branch,

  then Adam modify a file, commit and push,

  then Bob modify the same file,

  then Bob need to commit, then pull, then manually resolve the conflit, then commit again, then push.

2. ignore a tracking file

http://stackoverflow.com/questions/9237345/how-do-i-ignore-pycharm-configuration-files-in-a-git-repository

for single file

git rm --cached [filename]

for folder

git rm --cached -r [folder]

  

时间: 2024-11-10 14:07:36

Git basic的相关文章

Git - Basic Git Workflow

Definition Git is a software that allows you to keep track of changes made to a project over time.  Git works by recording the changes you make to a project, storing those changes, then allowing you to reference them as needed. Git project can be tho

spf13-vim安装与配置

一.简介 spf13-vim是Vim插件与配置的一个发行版本,包含了一整套精心挑选的Vim插件,采用Vundle进行插件管理,并且可以通过下列文件进行个性化配置 ~/.vimrc.local #个性化配置文件 ~/.vimrc.bundles.local #本地bundle配置文件 ~/.vimrc.before.local #早于spf13-vim加载的个性化配置文件 参考:https://github.com/spf13/spf13-vim#fork-customization 二.安装 下

使用tortoisegit工具git地址中带号码密码的拉取,以及使用这种方式后中途重置密码报git remote: HTTP Basic: Access denied 错误解决办法

1. 在拉取git项目时可以在地址中直接指定号码密码如下就可以直接拉取下来 https://username:[email protected] 需要注意,因为在解析地址时是以@符号作为地址信息和用户信息的分隔,所以再用户名和密码中如果有@符号,需要转义为%40 才能正常拉取和推送 2.在使用这种方式拉取的项目后,如果中途有重置过git的账号密码,在进行pull或者push操作时,会报git remote: HTTP Basic: Access denied错误,网上查到到的命令行清除账号密码信

git中出现remote: HTTP Basic: Access denied

git中出现remote: HTTP Basic: Access denied 1.git clone时出现 Username for 'http://******': *** remote: HTTP Basic: Access denied fatal: Authentication failed for 'http://******/java/gh-assemble.git/' 2.解决方法 1. 如果账号密码有变动 用这个命令 git config –-system –-unset cr

git remote: HTTP Basic: Access denied 错误解决办法

问题描述: git push 报 HTTP Basic: Access denied 错误 原因:本地git配置的用户名.密码与gitlabs上注册的用户名.密码不一致. 解决方案: 1. 如果账号密码有变动 用这个命令 git config –system –unset credential.helper 重新输入账号密码 应该就能解决了 2. 如果用了第一个命令 还不能解决问题那么 用这个命令: git config –global http.emptyAuth true3.如果以上两个方法

git报错 - remote: HTTP Basic: Access denied

不小心修改了密码之后,vs的githab就无法同步代码. 同步之后 输出框就提示  - remote: HTTP Basic: Access denied 解决方法: 1.控制面板-->选择用户账户-->选择管理你的凭据-->选择windows凭据-->-普通凭据->选择git的信息-->编辑或删除 也可直接在搜索框 搜索 windows凭据 我的git信息 在普通凭据里面 可进行编辑更新git信息.也可以直接删除,后续可创建. 等你再次去同步代码的时候,提示你输入用户

git push 报 HTTP Basic: Access denied 错误

git配置config记住密码设置记住密码(默认15分钟): git config --global credential.helper cache如果想自己设置时间,可以这样做: git config credential.helper 'cache --timeout=3600'这样就设置一个小时之后失效 长期存储密码: git config --global credential.helper store增加远程地址的时候带上密码也是可以的.(推荐) 从仓库的config的里面修改url,

git remote: HTTP Basic: Access denied Mac 使用Sourcetree 密码输错 再次输入解决方案

删除下面的key即可 原文地址:https://www.cnblogs.com/ZhangShengjie/p/10475253.html

五分钟上手Git

团队开发中.遵循一个合理.清晰的Git使用流程.是非常重要的.否则,每一个人都提交一堆杂乱无章的commit,项目非常快就会变得难以协调和维护.以下是ThoughtBot 的Git使用规范流程.我从中学到了非常多,推荐你也这样使用Git. 第一步:新建分支 首先,每次开发新功能,都应该新建一个单独的分支(这方面能够參考<Git分支管理策略>). # 获取主干最新代码 $ git checkout master $ git pull # 新建一个开发分支myfeature $ git check