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
git checkout --orphan NEWBRANCH | |
git rm --cached -r . | |
rm -rf * | |
touch README | |
git commit -m "initial" | |
git push |
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
Some nice templates: | |
https://github.com/terrancesnyder/enunciate-bootstrap-theme | |
Maven build plugin: | |
<plugin> | |
<groupId>com.webcohesion.enunciate</groupId> | |
<artifactId>enunciate-maven-plugin</artifactId> | |
<version>2.3.0</version> | |
<configuration> | |
<configFile>enunciate.xml</configFile> |
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
function PWD { | |
tmp=${PWD%/*/*}; | |
[ ${#tmp} -gt 0 -a "$tmp" != "$PWD" ] && echo ${PWD:${#tmp}+1} || echo $PWD; | |
} | |
export PS1="\[\033[01;33m\]\$(PWD)\[\033[0m\] \$ "; |
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
1 Inside of Sublime Text go to Preferences > Browse packages | |
2 Navigate to the User folder. | |
3 There you create a file called Default.sublime-theme | |
4 Open that file in Sublime Text and copy and paste the following JSON object: | |
[ | |
{"class": "tab_control", "attributes": ["selected", "file_medium_dark"],"tint_modifier":[255, 255, 255, 80]} | |
] |