-1
我該如何解決這個衝突? 我忘了做'git pull origin master',所以我得到了這個衝突。我怎樣才能解決它,並用哪些命令?解決git的衝突
<<<<<<< HEAD
app.use('/ss/arabic', express.static(path.join(__dirname, 'views')));
app.use('/ss/english', express.static(path.join(__dirname, 'views')));
=======
app.get('/', function (req, res, next) {
res.redirect('/arabic');
});
app.use('/arabic', express.static(path.join(__dirname, 'views')));
app.use('/english', express.static(path.join(__dirname, 'views')));
>>>>>>> ceba0237b227d28795ce7f15d7ebddbe522ea4e2
[如何解決Git中的合併衝突?](http://stackoverflow.com/questions/161813/how-to-resolve-merge-conflicts-in-git) – 1615903