Git alias with positional parameters

Basically I’m trying to alias: git files 9fa3 …to execute the command: git diff –name-status 9fa3^ 9fa3 but git doesn’t appear to pass positional parameters to the alias command. I have tried: [alias] files = “!git diff –name-status $1^ $1” files = “!git diff –name-status {1}^ {1}” …and a few others but those didn’t work. … Read more

How to overlay one div over another div

I need assistance with overlaying one individual div over another individual div. My code looks like this: <div class=”navi”></div> <div id=”infoi”> <img src=”https://stackoverflow.com/questions/2941189/info_icon2.png” height=”20″ width=”32″/> </div> Unfortunately I cannot nest the div#infoi or the img, inside the first div.navi. It has to be two separate divs as shown, but I need to know how I … Read more