git error

来源:8-1 Vue项目城市选择页 - 路由配置

小虾饺

2018-05-16

在最后将分支上的内容合并到主分支的时候报错,不知道是哪里出错了?

$ git merge city-router
Auto-merging src/router/index.js
CONFLICT (content): Merge conflict in src/router/index.js
Auto-merging src/pages/home/components/header.vue
Automatic merge failed; fix conflicts and then commit the result.

并且index.js突然加上了很多>>>:

import Vue from 'vue'
import Router from 'vue-router'
import Home from '../pages/home/Home.vue'
import City from '../pages/city/City.vue'

Vue.use(Router)

export default new Router({
  routes: [
    {
      path: '/',
      name: 'Home',
      component: Home
    },{
      path: '/city',
      name: 'City',
      component: City
<<<<<<< HEAD
    }]
=======
    }
  ]
>>>>>>> city-router
})


写回答

1回答

小虾饺

提问者

2018-05-16

在之后输入git merge --abort会报错:

error: Entry 'src/pages/city/components/Header.vue' not uptodate. Cannot merge.
fatal: Could not reset index file to revision 'HEAD'.

0
1
Dell
这是出现冲突了,百度下什么是git的冲突,然后解决掉冲突即可
2018-05-16
共1条回复

Vue2.5-2.6-3.0开发去哪儿网App 零基础入门到实战

课程紧跟Vue3版本迭代,企业主流版本Vue2+Vue3全掌握

10675 学习 · 8191 问题

查看课程