0

What is the easiest way to change the git history of my repository (e.g., "repo.git") in a way that does not wipe all my files?

warship
  • 2,924
  • 6
  • 39
  • 65

1 Answers1

0

In GitHub you can find an article about this: Changing author info.

Otherwise, I think you will need to rebase your repo and then push again (however you should never do that on shared repository).

Check this link: Git Tools - Rewriting History

and this answer change-commit-author-at-one-specific-commit

Hope it helps..

Gabi
  • 589
  • 3
  • 9