Postings tagged with git
Reviewing Patches
One of the new Giggle features I am most proud of is the new patch view, which only shows one chunk at a time and let's you navigate between chunks using the file list, toolbar buttons or hotkeys (Alt+Up, Alt+Down). At the same time it also is the most criticised feature of the new Giggle. So I wonder how to improve that view.
<img alt="Giggle Diff View" src="http://taschenorakel.de/media/movies/giggle-diff-view.jpg" ...
The power of github
A lot has already been said about github, but I guess it can't harm if I make a list of my preferred features:
- Dashboard (need to be logged in to see): this is your personal start location. It contains many useful links and other automatically generated information, such as news from people you track ("follow"). It is the most prominent feature regarding the user-centered approach of github ...
Publishing a single git branch
Scott, your blog seems to be down. Therefore this way:
# create target repository
GIT_DIR=/tmp/stuff git init --bare
# tell git about that new repository
git remote add stuff /tmp/stuff
# publish your branch
...
libtool aware gdb wrapper and mergetool
Just want to mention some small and rough tools I've written recently to easy my daily hacker's life:
- gdb-wrapper: gdb doesn't know what to do with libtool generated wrapper scripts. Quite strange that over the years nobody felt annoyed enough to tell gdb about those wrapper scripts. At least I was sufficiently annoyed to write this tiny wrapper script, which redirects gdb to the ...