I want to make a reference in my thesis work and I want to make a link to a source using \textit
\begin{thebibliography}{9}
\bibitem{hinton}
Jeffrey Hinton(2012)
\textit{Neural Networks for Machine Learning}
[\textit{Lecture 3.4 — The backpropagation algorithm}]
\\\textit{https://github.com/mebusy/notes/blob/master/dev_notes/NeuralNetworks.md}
\end{thebibliography}
But it transformes https://github.com/mebusy/notes/blob/master/dev_notes/NeuralNetworks.md link(which is correct) to this one https://github.com/mebusy/notes/blob/master/devnotes=NeuralNetworks:md (which is incorrect. How can I fix it?
EDIT:
I added \url, but then he link doesn't work:
\bibitem{hinton}
Jeffrey Hinton(2012)
\textit{Neural Networks for Machine Learning}
[\textit{Lecture 3.4 — The backpropagation algorithm}]
\\\textit{\url https://github.com/mebusy/notes/blob/master/dev_notes/NeuralNetworks.md}

url's/hyperref's\urlcommand. If you insist on writing URLs in italic, set\urlstyle{same}and put an\textitaround it (see https://tex.stackexchange.com/q/53962/35864) – moewe Jun 13 '18 at 20:24\urlis not a switch. It takes the URL as an argument (between curly braces):\textit{\url{https://github.com/mebusy/notes/blob/master/dev_notes/NeuralNetworks.md}}– moewe Jun 13 '18 at 20:28