Skip to content

Instantly share code, notes, and snippets.

View wsky's full-sized avatar
🏠
Working from home

Harry wsky

🏠
Working from home
View GitHub Profile
@wsky
wsky / Java
Last active October 13, 2015 23:37
java/eclipse/maven scripts
download jdk6/7/8 first
http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
#windows
JAVA_HOME=C:\java_tools\jdk1.6.0
CLASSPATH=.;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.jar
@wsky
wsky / branch.sh
Last active November 12, 2015 02:05
usual git cmd and svn
# https://github.com/Kunena/Kunena-2.0/wiki/Create-a-new-branch-with-git-and-manage-branches
git branch net20
git push origin net20
git checkout net20
git branch -d [branch]
git push origin --delete [branch]