The command shown only fetches master branch, and checkou of other branches will fail. Two solutions:
# add all remote branch names # use 'devel' instead of '*' to get only devel branch # quotes are significant git remote set-branches origin '*' git fetch git checkout devel Or: # shallow clone each branch git clone --depth=nn --no-single-branch ... -- You received this message because you are subscribed to the Google Groups "leo-editor" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/leo-editor/728ae178-6b4b-4fac-9d2c-79fecbd8f6b9%40googlegroups.com.
