How To List All Tags With The Message In git

1 2 |
git tag -n git tag -n3 |
![]() |
Show All Branches, Local and Remote
1 |
git branch -a |
Show Local Branches
1 |
git branch |
Show Remote Branches
1 |
git branch -r |
To fetch all remote branches locally
1 2 3 |
git branch -r | grep -v '\->' | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" | while read remote; do git branch --track "${remote#origin/}" "$remote"; done git fetch --all git pull --all |
Recently, I wanted to see the “origin” of the git repository I was working in. The command is: git remote -v For example:
1 2 3 |
theUser@theHost$ git remote -v origin git@localhost:/volumes/data/git/thePlugin.git (fetch) origin git@localhost:/volumes/data/git/thePlugin.git (push) |
To display the filenames included in each commit, just add the –name-only argument to git log:
1 |
git log --name-only |
My wife found this fantastic picture and shared it with me, so I had to post it…
If you’re using inline-block on elements that are inline by nature (a, span, etc.), IE7 will not recognize your inline-block. Simply use this IN ADDITION to your CSS to make it work.
1 2 |
zoom: 1; *display:inline; |