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
package pinzolo.util; | |
import static java.util.stream.Collectors.*; | |
import java.math.BigDecimal; | |
import java.util.LinkedHashMap; | |
import java.util.Map; | |
import java.util.function.Function; | |
import java.util.stream.Collector; | |
import java.util.stream.Collectors; |
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
# 重複を取り除いてソートする | |
:sort u | |
# ページ送り | |
C-f | |
C-b |
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
# 間違えて git rm したファイルを復活させる | |
git reset HEAD hoge/hoge.rb # キャッシュ上で復活 | |
git checkout hoge/hoge.rb # ファイルの取り出し | |
# 現在のブランチ名の変更 | |
git branch -m dest_branch_name | |
# 特定のブランチ名の変更 | |
git branch -m src_branch_name dest_branch_name | |
# コミット間で変更のあったファイル一覧 |