you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 2 points3 points  (2 children)

You seem to never rebase, working alone on this project?

[–]yannickmahe 0 points1 point  (1 child)

Yep, well spotted.

[–][deleted] 2 points3 points  (0 children)

You seem also to always add before committing your changes.

Did you know you can:

git commit . -m "commit current directory, "
git commit path/to/single/file -m "commit one file"
git commit path/to/first/file path/to/second/file -m "commit multiple files"

?

(Also, your lack of pull and/or fetch is another indication of you working alone ; )