- ngControl
- ngFormControl
- ngModel
- ngFormModel
- ngControlGroup
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
const composeEnhancers = | |
typeof window === "object" && | |
window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ ? | |
window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__({ | |
// Specify extension’s options like name, actionsBlacklist, actionsCreators, serialize... | |
}) : compose; |
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
// Reset all local commits | |
git reset --hard @{u} | |
// Delete untracked files and directories | |
git clean -f -d | |
// reset all unpushed commits, keep the work | |
git reset --soft | |
// reset all unpushed commits, destroy the work |
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
- git rebase -i branch~n | |
replace 'pick' from second line to last to 'f' | |
save and exit | |
- git push branch --force |
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
- git checkout branch | |
- git commit | |
- git checkout master | |
- git pull | |
- git checkout branch | |
- git rebase origin/master | |
if there are no conflicts: | |
- git push branch --force |