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 2,050 times
        
    1 Answers
3
            
            
        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
        
- 25,478
- 10
- 60
- 87
 
    