// Aula 9 - Gerenciando suas branches locais # rm -rf jgit/ # git clone https://git.eclipse.org/r/jgit/jgit # cd jgit # git branch newBugFix # git branch # git log -1 newBugFix --format=format:%H # git branch --edit-description newBugFix # git config --get branch.newBugFix.description # cat .git/refs/heads/newBugFix $ git branch anotherBugFix 979e346 $ git log -1 anotherBugFix --format=format:%h # git checkout -b lastBugFix 979e346 $ git branch -v $ git branch -vv