I am new to git. Recently, I merged some code from feature
to master
branch. After merging my .gitignore file looks like this
<<<<<<< HEAD
gen/
bin/
=======
gen/
>>>>>>> master
Now my question is
- If I want to change content of that file, should I follow any special instruction or just normally I can change the file and commit ?
- What are the meaning of those sign
<<<<<<< HEAD
>>>>>>> master
? - If I remove head and master from the file. Will it generate any error ?