Joined November 2012
·
Posted to
git merge --no-commit --no-ff $BRANCH
over 1 year
ago
If you wanna bring the code without commit, use --squash. The difference happens when you commit, --no-commit will proceed with a merge. (sorry if you already knew that)
Achievements
83 Karma
2,143 Total ProTip Views
Mongoose 3
Have at least three original repos where Ruby is the dominant language
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Velociraptor
Have at least one original repo where Perl is the dominant language
Mongoose
Have at least one original repo where Ruby is the dominant language
Charity
Fork and commit to someone's open source project in need
A little old but, it can get better using the Splat (asterisk):
class Array def except(*value) self - value end end