Get an error when using the standard git command:
[~/site]$ git branch git:1: maximum nested function level reached
.zshrc:
plugins=(git osx colored-man gem brew go bundler rake rails) source $ZSH/oh-my-zsh.sh
My mistake, I moved the bash function to zsh:
gr() { git rebase -i HEAD~$1 }
Decision:
function gr() { git rebase -i HEAD~$1 }
I had the same error with another ( export ) command caused by the definition of a random recursive function. I could solve the problem by removing the unnecessary function:
export
unset -f export
Source: https://habr.com/ru/post/1265521/More articles:What happened to this ReactRouter.match () implementation? - node.jsError starting up while testing with Robolectric - javaHow to detect reverse proxy in docker windows container - dockerClosing a file without knowing its handle - python@RunWith (Cucumber.class) and @Autowired MockMvc - spring-bootjava - create an existing static function - javaHow to get the number of real words in text in Swift - stringPandas dataframe create a new column based on the columns of other data frames - pythonThe number of words in a Swift string to calculate the number of words - stringPrefab Collider2D is not recognized as Raycast Collider - c #All Articles