So I have just started learning git. As such, I was using two different computers to understand the collaboration mechanism. As such, in my original computer I was writing and HTML file. Which had a local hyperlink reference:
<link rel="stylesheet" href="F:\Codes\HTML\Experiment\Styling\Experimental.css">
But now that I have cloned that repository in the other pc (It did not have any of these files before in it), these relative directory paths are changing. The same "Experimental.css" in the second pc has been stored in a different path, obviously. In fact, the second pc doesn't even have a local drive with the letter F. For the second pc, the path will be:
<link rel="stylesheet" href="D:\ZCode Files\HTML\Web_Ex\Styling\Experimental.css">
As such, how am I supposed to work between two different computers without having to change such lines of codes every time? Am I missing some obvious feature here or is it possible to set git to ignore certain portions of code?