ブランチ名の命名規則をGitFlow、マージはPRでマージさせるGitHub Flowを組み合わせて使っています。
- 名前は features/yousan/201801/fix-admin-panel といった名前でブランチを作ってください。 開発用ブランチとして、features/ブランチの以下にユーザ名(例: yousan/)、年月(例: 201801)、機能概要(例: fix-admin-panel)としてください。
#!/usr/bin/env bash | |
# Change WordPress table prefix | |
# WP-CLI is reqiured | |
# WARNING: BACKUP is strongly recommended | |
# usage: change_db_prefix.sh wp_new_prefix_ | |
# 1. Get all WordPress tables | |
# 2. Change wp_options and wp_usermeta values | |
# 3. Rename tables | |
# 4. Change table prefix at wp-config.php |
#!/usr/bin/env bash | |
mkdir ~/bin | |
curl -o bin/wp https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar | |
chmod +x bin/wp | |
echo 'alias wp="php7.4 ~/bin/wp"' >> ~/.bashrc | |
source ~/.bashrc |
<?php | |
/** | |
* Plugin Name: TM WooCommerce Product API Link Disable Duplicate | |
* Plugin URI: | |
* Description: Disable product syncing when WooCommerce duplicate. When duplicating a product with WooCommerce basic function, it copies synced ID. Then original and duplicated product has same destination ID. This plugin removes the product ID then disable syncing for new duplcated product. | |
* Version: 1.0.0 | |
* Author: yousan | |
*/ | |
// @see ../woocommerce/includes/admin/class-wc-admin-duplicate-product.php |
#!/usr/bin/env bash | |
## The original file is here. https://dev.classmethod.jp/cloud/aws/check-cloudwatch-logs-incomigbytes-by-aws-cli/ | |
## Show CloudWatch log size as CSV (TSV) format. | |
## CloudWatchのロググループをCSV(TSV)形式で出力します | |
# Sample | |
# ./get_cloudwatch_logs_incomingbytes_sum.sh yousan-aws ap-northeast-1 3 | |
# | |
# Byte Date LogGroup MegaByte GigaByte | |
# 19820.0 2019-09-19T00:00:00Z /aws/lambda/yousantest 0.02 0.00 | |
# 35428.0 2019-09-18T00:00:00Z /aws/lambda/yousantest 0.03 0.00 |
#!/usr/bin/env bash | |
# 現在のブランチ名からブランチハッシュを取得する | |
# ブランチハッシュ => ブランチ名からスラッシュの置換、文字列を短く、ハッシュを付加してサニタイズしたもの。 | |
# e.g. master => master | |
# e.g. develop => develop | |
# e.g. feature/yousan/test => feature-yousan-test-faaa59 | |
# e.g. feature/yousan/something-toooooooooooooooooooooooooooooooooooo-long-branch-name => feature-yousan-something-tooooooooooooooooooooooooooooooo-379fca | |
set -xe | |
# 現在のブランチ名を取得する |
# ==================== Emojis ==================== | |
# 🎉 :tada: 初めてのコミット(Initial Commit) | |
# 🔖 :bookmark: バージョンタグ(Version Tag) | |
# ✨ :sparkles: 新機能(New Feature) | |
# 🐛 :bug: バグ修正(Bagfix) | |
# ♻️ :recycle: リファクタリング(Refactoring) | |
# 📚 :books: ドキュメント(Documentation) | |
# 🎨 :art: デザインUI/UX(Accessibility) |
ブランチ名の命名規則をGitFlow、マージはPRでマージさせるGitHub Flowを組み合わせて使っています。
#!/usr/bin/env bash | |
# バージョンを求めるスクリプトです。 | |
# Usage: curl -s -L https://gist.githubusercontent.com/yousan/34016e297cad5871b27a94135d5e4d43/raw/46f5662225ffec4bcfc4bc720a42cbb74cd8c9b3/version.sh | bash | |
# @see https://qiita.com/yousan/items/cffa19f67f225097127d | |
echo $(git tag | sort -V | tail -1) '-' | tr -d " \n"; git rev-parse HEAD | cut -c1-7 | tr -d "\n"; echo '-'$(date +%Y%m%d) |
<?php | |
/** | |
* WordPress Query Comprehensive Reference | |
* Compiled by luetkemj - luetkemj.com | |
* Japanese translated by hissy | |
* | |
* CODEX: http://wpdocs.sourceforge.jp/%E9%96%A2%E6%95%B0%E3%83%AA%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9/WP_Query#.E3.83.91.E3.83.A9.E3.83.A1.E3.83.BC.E3.82.BF | |
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php | |
* Original: https://gist.github.com/luetkemj/2023628/9e911982440141a13cb1dd8ba1ad6b35cd7bbdd7 | |
*/ |