| Case | Command |
|---|---|
| コミットグラフを表示する | git log --graph |
| 特定の行がどのコミットで更新されたか調べる | git blame <ファイル名> |
| FastFowordなしでマージする | git merge <ブランチ名> --no-ff |
| スタッシの一覧確認を取得 | git stash list |
| untruckedファイルもスタッシュに入れる | git stash -u |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Ansi 0 Color</key> | |
| <dict> | |
| <key>Alpha Component</key> | |
| <real>1</real> | |
| <key>Blue Component</key> | |
| <real>0.25882354378700256</real> |
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
| # short alias | |
| alias d="docker" | |
| alias g="git" | |
| alias k="kubectl" | |
| alias y="yarn" | |
| # cheetsheet alias | |
| alias cs="vim ~/Projects/cheetsheet/cheet-sheet.md" | |
| # memo alias |
OlderNewer