This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
it:git [2013/07/24 13:20] Alexander Rind Eclipse project setup step |
it:git [2015/11/25 10:14] (current) Alexander Rind [Further Readings] Git lernen mit Beispielen |
||
---|---|---|---|
Line 91: | Line 91: | ||
Source: http://stackoverflow.com/questions/4528869/how-do-you-attach-a-new-pull-request-to-an-existing-issue-on-github#answer-4529172 | Source: http://stackoverflow.com/questions/4528869/how-do-you-attach-a-new-pull-request-to-an-existing-issue-on-github#answer-4529172 | ||
+ | ===== Rename files throughout history ===== | ||
+ | |||
+ | <code bash> | ||
+ | git filter-branch --index-filter ' | ||
+ | git ls-files -s | \ | ||
+ | sed "s-\t.classpath-\teclipse.classpath-" | \ | ||
+ | sed "s-\t.project-\teclipse.project-" | \ | ||
+ | GIT_INDEX_FILE=$GIT_INDEX_FILE.new git update-index --index-info && \ | ||
+ | mv "$GIT_INDEX_FILE.new" "$GIT_INDEX_FILE" | ||
+ | ' HEAD | ||
+ | </code> | ||
+ | |||
+ | Source: http://www.fussylogic.co.uk/blog/?p=1250 | ||
===== Further Readings ===== | ===== Further Readings ===== | ||
- | * [[http://progit.org/book/ | Pro Git e-book]] -- i can recommend | + | * [[http://www.x3m.ch/files/Git%20lernen%20mit%20Beispielen.pdf | Git lernen mit Beispielen]] -- short tutorial in German; Markus W. recommends :-) |
+ | * [[http://progit.org/book/ | Pro Git e-book]] -- i can recommend :-) | ||
* [[http://book.git-scm.com/ | git community book]] -- i didn't read | * [[http://book.git-scm.com/ | git community book]] -- i didn't read | ||
* [[http://git-scm.com/course/svn.html | git crash course for Subversion users]] | * [[http://git-scm.com/course/svn.html | git crash course for Subversion users]] |
alex @ ieg: home about me publications research