Destaque

How to clone all branches on Git?

Question I'd like to know how to clone automatically all remote branches in my local repository without execute one command for each one like this: git checkout -b <branch> <remote>/<branch> There are a lot of branches, too many to do one command for each one. Answer I'd recommend create an alias (showed below), which executes … Continue lendo How to clone all branches on Git?

Git Rebase…be careful

I was reading about git command rebase x merge because I was trying to figure out new better ways to work with these commands and I found an email from Linus Torvald where he is commenting about it. In this email, Linus Torvald says: You must never EVER destroy other peoples history. You must not … Continue lendo Git Rebase…be careful