This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<?php | |
$isHorz = (@$_GET['t'] == 'horz'); | |
?> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title>Firefox Renamable Bookmarks Separator</title> | |
<link rel="icon" href="<?php echo $isHorz ? 'horz' : 'vert'; ?>-favicon.ico" type="image/x-icon"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Invert ref from : https://gist.github.com/mandiwise/5954bbb2e95c011885ff | |
cd $HOME/code/repo-directory | |
git remote rename origin github | |
git remote add origin https://[email protected]/Klemart3D/awesome-new-repo.git | |
git push -u origin master | |
... | |
git remote rm github |