This file contains hidden or 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
#! /bin/sh | |
# Script to provide answer for question: | |
# http://stackoverflow.com/questions/5149872/how-to-git-remote-add-and-track-a-branch-in-the-same-filesystem | |
echo create origin | |
mkdir origin | |
cd origin/ | |
git init --bare | |
cd .. |
This file contains hidden or 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
" for Java: makes main signature | |
iabbrev jmain public static void main (String[] args) | |
" for Java: output shortcuts | |
iabbrev Sout System.out.println | |
iabbrev Serr System.err.println | |
" for Java: import shortcuts | |
iabbrev Iawt import java.awt.*; | |
iabbrev Iswing import javax.swing.*; |
NewerOlder