Matthias Esterl

Results 28 issues of Matthias Esterl

http://travisjeffery.com/b/2012/02/search-a-git-repo-like-a-ninja/

question

``` git blame -L10,+1 fe25b6d^ -- src/options.cpp ``` Source: http://stackoverflow.com/a/5098314/709769

http://stackoverflow.com/a/19095988/709769 Remove **all** files from repo: ``` git rm -r --cached . ``` Re-add all files: ``` git add . ``` then ``` git commit -am "Remove ignored files" ```

enhancement

``` To rewrite the repository to look as if foodir/ had been its project root, and discard all other history: git filter-branch --subdirectory-filter foodir -- --all ``` http://stackoverflow.com/a/811384/709769

It might be time to think about a structure for the document. Discussion: Start.

It would be awesome to be able to bulk install addons from a json, xml or similar file. Something like a simplified version of what [composer](ssh://[email protected]/afs/treefish.org/user/me/private/repos/openFrameworks/wirbrennenApps.git) does for php-projects. best,...