「Debian活用/その他」の版間の差分

提供: Medeshima wiki
ナビゲーションに移動 検索に移動
編集の要約なし
編集の要約なし
1行目: 1行目:
<nowiki>
<nowiki>
yaskkserv(サーバを1つに)
squid
squid
webDAXSV
webDAXSV

2024年6月1日 (土) 13:31時点における版

yaskkserv(サーバを1つに)
squid
webDAXSV
LDAP
docker
Clamav
fetchmail
vscode emacs
scp -P XXX -i id_XXX XXX.txt XXX@XXX:
Debian Backports
Debian Fast Track
chroot qemu-arm qemu-user-static debootstrap
xxd vim emacs
SpamAssassin
s/mime
DKIM
voicevox

git

初期設定

$ git config --global user.name "user"
$ git config --global user.email "user@example.com"
$ git config --global pull.rebase false

$ git config --global color.ui = auto

insteadOf

書き換え

$ git commit --amend

$ git log --pretty=full

$ git filter-branch -f --env-filter '
  if [ "$GIT_COMMITTER_EMAIL" = "user1@example.com" ];
    then
      GIT_COMMITER_NAME="user2";
      GIT_AUTHOR_NAME="user2";
      GIT_COMMITER_EMAIL="user2@example.com";
      GIT_AUTHOR_EMAil="user2@example.com";
  fi'
$ git push -f