Git Username Email Exchange

Contains information related to the git

How to Change All Email Addresses and Accounts

Account Change Example Usage

git filter-branch -f --env-filter "GIT_AUTHOR_NAME='表示される名前';
Changing Email Address

GIT_AUTHOR_EMAIL='hoge@sample.com';

Changing Account at the Time of Commit

GIT_COMMITTER_NAME=‘hoge’; GIT_COMMITTER_EMAIL='hoge@sample.com’;" HEAD

Executing the Following Command Resolves the ‘rejected Error’

git fetch && git merge origin/master

Executing the Following Command Resolves the ‘rejected Error, merge Error’

git fetch && git merge --allow-unrelated-histories origin/master
git 

See also