使用 git branch -a 可以查看本地分支和远程分支情况 但远程分支(红色部分)删除后,发现本地并没有同步过来. 一. 同步本地的远程分支 查看本地分支和追踪情况: git remote show origin 可以发现红框中的分支是远程分支已被删除的分支,根据提示可以使用 git remote prune 来同步删除这些分支. 运行命令: git remote prune origin 再次查看分支情况: 发现红色部分的远程分支已经同步,远程删除的分支,本地也已经不见了. 二. 删除本…
使用git branch -a可以查看本地分支和远程分支情况 但远程分支(红色部分)删除后,发现本地并没有同步过来. 一. 同步本地的远程分支 查看本地分支和追踪情况: git remote show origin 可以发现红框中的分支是远程分支已被删除的分支,根据提示可以使用git remote prune 来同步删除这些分支. 运行命令: git remote prune origin 二. 删除本地多余分支 git branch -D feature/chatfix 啦啦啦…
git 强推本地分支覆盖远程分支git push origin 分支名 --force…
一.git命令整理 git config --global user.email "邮箱名":绑定GitHub邮箱 git config --global user.name "Github名":绑定GitHub git init:初始化一个空的git仓库 git status:检查仓库中的文件状态 git add:添加文件到暂存区 git commit -m "备注信息":提交到版本库并记录提交信息 git log:查看git日志 git lo…
1.前言 使用  git做项目控制版本工具,当然,使用SVN也可以,但是,git让人感觉更先进一些,与GitHub结合,用起来很方便,服务端由官网控制. 而SVN分客户端和服务端,都是个人控制,因此,会觉得相对安全一点,毕竟SVN存东西是在自己的服务里,而git是存在云端!!! 2.创建 仓库 (1)首先需要有一个自己Github账户, 官网地址 :  https://github.com/ 怎么注册就不说了, 登录后,点击右上角的加号 点击 new repository ,即新存储库的意思 (…
一. 冲突的产生:在上次git同步(上传)之后,本地和远程均有更改 二. 处理 1. 丢弃本地,采用远程: git checkout 冲突文件及其路径 如: git checkout bzrobot_navigation_meta_packages/map_server/src/access_map_server.cpp 2. 人为合并( git mergetool)本地和远程代码 (思路:先提交没有冲突的部分,再人为合并,再提交冲突的部分,最后将所有改动push上去) 1). git pull…
git remote prune origin 强迫症,看到这些分支不一致就来气!…
首先介绍一下背景. 如果有一个工程A,开始时test.txt 的内容如下 chenfool hello world 作者通过 git clone 的方式,将这个项目download 到本地. 此时,作者手贱,直接在web 端,将test.txt 修改成为 chenfool hello world 过了一段时间后,作者突然想起要修改本地的test.txt文件,在本地 clone 版本中,对test.txt 文件修改如下 chenfool hello world 然后想将本地的test.txt 提交…
最近使用git pull的时候多次碰见下面的情况: There is no tracking information for the current branch.Please specify which branch you want to merge with.See git-pull(1) for details. git pull <remote> <branch> If you wish to set tracking information for this branc…
最近使用git pull的时候多次碰见下面的情况: There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details. git pull <remote> <branch> If you wish to set tracking information for this bra…