2

I was looking for a way to edit or remove an alias in git. I found a solution to get every alias using listing every alias in git. Is there any way of doing it?

Community
  • 1
  • 1
yash
  • 1,277
  • 2
  • 22
  • 33

1 Answers1

2

To remove an alias, use unset

git config --global --unset alias.trololo

Then to edit it, simply add it again

git config --global alias.trololo checkout

Or you can simply edit the .gitconfig file

Source

https://github.com/githubtraining/zzz_deprecated-feedback/issues/24

Richard Hamilton
  • 24,108
  • 10
  • 56
  • 82