Archive for the ‘git’ Category

git delete local branch

imran@imran-Dell-System-Inspiron-N7110:~/Projects/dev$ git branch -d r error: The branch ‘r’ is not fully merged. If you are sure you want to delete it, run ‘git branch -D r’. imran@imran-Dell-System-Inspiron-N7110:~/Projects/dev$ git branch -D r Deleted branch r (was 25491ec).

git remove local untracked files

git clean -f -d

git search by author

git log –author=’laszlo’ git log –author=’botond’