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
> version of svn | |
$ svn --version | |
> information of the current branch | |
$ svn info | |
> Checkout the repository | |
$ svn checkout <new-url> <directory> | |
$ svn checkout -r <revision-id> <new-url> <directory> |
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
> the installed direction of my git | |
$ which git | |
> version of git | |
$ git --version | |
> Ignore list is a file in the base folder | |
.gitignore |
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
//installation of wordpress client | |
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar | |
//check if it works | |
php wp-cli.phar --info | |
//setting permissions and scope (UNIX environment) | |
chmod +x wp-cli.phar | |
sudo mv wp-cli.phar /usr/local/bin/wp |
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
// check size of a folder and its subfolders | |
du -h your_directory |
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
#resize retina design | |
Image > Image Size | |
Set Document Size to width 50% |
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
// import database | |
mysql -u [server_user] -p big_database_name < big_database.sql |
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
// create a package.json file asking for | |
// - name (node) | |
// - version (1.0.0) | |
// - description () | |
// - author () | |
npm init | |
// version of npm installed | |
npm -v |
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
#check info of ionic versioning | |
$ ionic info | |
#automatic creation of a boilerplate for an application | |
#application => application name | |
#template => template name tabs | sidemenu | blank | |
$ ionic start [application] [template] | |
#creation of a web server to view the application |
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
// install node version | |
nvm install 7.0.0 | |
nvm install 4.7.3 | |
// use differen node version | |
nvm use 7.0.0 | |
// list versions of node | |
nvm list |
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
// current assignee | |
project = "PROJECT_NAME" AND assignee is not EMPTY | |
// last created tickets | |
project = "PROJECT_NAME" ORDER BY id DESC | |
// blocked tickets on a status for the last X days | |
project = "PROJECT_NAME" AND | |
(status = "In Progress" AND status changed to "In Progress" before -[X]d OR status = "Review" AND status changed to "Review" before -[X]d) | |
ORDER BY status ASC |
OlderNewer