基本コマンド
|
1 |
$ git config --list |
--system, --global, --local の設定が順に重複して表示される。
重複して表示された(重複して設定された)設定項目は最後に表示されたものが有効となる。
|
1 |
$ git config --list |
--system, --global, --local の設定が順に重複して表示される。
重複して表示された(重複して設定された)設定項目は最後に表示されたものが有効となる。
見出し/ヘッダー (#, ##, ###, … / H1, H2, H3, …) が全て大文字に変換されて表示される。
先頭ページでCSSのtext-transformのプロパティ値をnone(非表示)でオーバーライド(上書き)する。
|
1 |
$ ls -l | pbcopy |
|
1 2 3 |
$ cat readme.txt | pbcopy $ pbpaste | iconv -t UTF8 |
Visual Studio Code の 拡張モジュール "vscode-reveal" からWebブラウザを起動する

vscode-revealjs.showRevealJSInBrowserエラーが発生する。
Ctrl + [Ctrl + 3【背景】MacBook ProのTouch Barではescキーが打鍵し難いため。
macOSのバージョンアップや環境構築直後に"xcrun"が見つからない(missing)エラーが発生する。
|
1 2 3 4 5 6 7 8 9 |
$ brew upgrade ==> Upgrading 1 outdated package: ruby-build 20191002 -> 20191004 ==> Upgrading ruby-build xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun Error: An exception occurred within a child process: CompilerSelectionError: ruby-build cannot be built with any available compilers. Install GNU's GCC: brew install gcc |
|
1 |
$ find . -path "./Projects" -prune -o -type f -name "*.rb" |
-path : パス指定-prune : 除外-o : 条件論理和 (OR)-type f : ファイルのみ検索-name : 名前指定