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

提供: Medeshima wiki
ナビゲーションに移動 検索に移動
編集の要約なし
編集の要約なし
10行目: 10行目:
Debian Backports
Debian Backports
Debian Fast Track
Debian Fast Track
</nowiki>

== git ==

<nowiki>
git config pull.rebase false
git config pull.rebase false
</nowiki>
</nowiki>

<nowiki>
$ 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' HEAD
</nowiki>
$ git push -f

2024年5月22日 (水) 02:34時点における版

squid
webDAXSV
LDAP
docker
Clamav
fetchmail
vscode emacs
scp -P XXX -i id_XXX XXX.txt XXX@XXX:
Debian Backports
Debian Fast Track

git

git config pull.rebase false

$ 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' HEAD

$ git push -f