How can I solve this conflict? I forgot to do 'git pull origin master', so I get this conflict. How I can solve it and with which commands ?
<<<<<<< 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