Last active
January 8, 2025 09:51
-
-
Save fernandoaleman/853916e1903b475820f5416bfe048cb8 to your computer and use it in GitHub Desktop.
How to clone git repo with all branches and tags
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Clone repo | |
git clone --mirror [email protected]/fernandoaleman/app.git app/.git | |
# Change into app directory | |
cd app | |
# Update git config | |
git config --unset core.bare | |
# Checkout master branch | |
git checkout master |
Very interesting
Nice !
caonima
thanks, but those branches don't track their remotes.
how to make them all track their remotes?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
wonderful job,thks