How To List All Tags With The Message In git
erics, April 11th, 2023 |
1 2 |
git tag -n git tag -n3 |
|
erics, October 29th, 2020 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 |
erics, January 30th, 2020 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) |
erics, June 3rd, 2019 To display the filenames included in each commit, just add the –name-only argument to git log:
|
1 |
git log --name-only |
erics, December 5th, 2012 My wife found this fantastic picture and shared it with me, so I had to post it…
erics, October 2nd, 2011 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; |