Software」カテゴリーアーカイブ

PC関連のソフトウェアに関するカテゴリーです。

Gitのユーザー名とメールアドレスを設定

Gitのユーザー名とメールアドレスを設定するコマンド

リポジトリ内で

$ git config user.name "yourname"
$ git config user.email "[email protected]"

全体で

$ git config --global user.name "yourname"
$ git config --global user.email "[email protected]"

設定内容の確認

$ git config user.name
yourname

$ git config user.email
[email protected]

dot.screenrcの設定

Linuxのターミナルで便利なGNU Screen。
その設定ファイル.screenrcについての覚え書き。

ログファイル

ログファイル生成の有効化

deflog on

ログファイル生成の無効化

deflog off

ログファイルのファイル名

logfile $HOME/.screenlog.%n

エスケープ

コマンド文字をC-tに変更する例(デフォルトはC-a

escape ^tt

リンク

GNU Screen – GNU Project – Free Software Foundation
http://www.gnu.org/software/screen/