- css is a thing no one wants to think about too much (its not "development")
- we haven't (or "can't") do markup/css properly.
- we think repeatible patterns are cool.
- tools != rules = a framework should allow us the greatest flexibility of implementation choices.
- Projects are beautiful unique snowflakes. There is technical debt and intricate tribal knowledge for every project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) Create a branch with the tag | |
git branch {tagname}-branch {tagname} | |
git checkout {tagname}-branch | |
2) Include the fix manually if it's just a change .... | |
git add . | |
git ci -m "Fix included" | |
or cherry-pick the commit, whatever is easier | |
git cherry-pick {num_commit} | |