Posts by André Sassi • 153 points
3 posts
-
2
votes1
answer58
viewsA: branching a branch from a particular commit and migrating subshot commits
One can do the fast-forward master-gitbook for m10 and then remove the commits m4 to m10 of master. Use the commands below (overriding mX by the SHA-1 hash of the respective commit): git checkout…
gitanswered André Sassi 153 -
1
votes1
answer625
viewsA: Do I need to put the hidden files from the Eclipse project into the repository?
These files contain settings like: information on the repository; information about the Eclipse project; project-specific Eclipse settings; configurations used by various tools; user settings.…
-
2
votes1
answer129
viewsA: Error when using inline methods in C++ classes: Undefined Reference to
The functions declared with inline need to be defined (that is, they must possess a body) in the same Translation Unit where they are used. A Translation Unit is a source file (.cpp) and all the…
c++answered André Sassi 153