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?
Asked
Active
Viewed 1,700 times
1 Answers
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