Posted about 2 years ago. Visible to the public.
How to use git fixup
Using git fixup helps you to speed up appending changes further back in the git history of your feature branch.
Example:
Copygit commit --fixup aabbcc # Create a commit with the message "fixup! Commit message of aabbcc" git rebase -i --autosquash master
It would be nice if you could use this feature without the -i
flag, but until now it seems not to be possible. Read more about our recommended git workflow for feature branches.
Does your version of Ruby on Rails still receive security updates?
Rails LTS provides security patches for unsupported versions of Ruby on Rails (2.3, 3.2, 4.2 and 5.2).