[DEPRECATION WARNING]: Using bare variables is deprecated. Update your
playbooks so that the environment value uses the full variable syntax
('{{common_apt_packages}}').
This feature will be removed in a future release.
Deprecation warnings can be disabled by setting deprecation_warnings=False in
ansible.cfg.
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
| commit 688a9ebc11d5092f3d0e1ef9e266a5151b322d48 | |
| Author: Robert Anthony Bellamy <rabellamy@gmail.com> | |
| Date: Sun Apr 10 13:06:20 2016 -0400 | |
| adds The-Cat-in-the-Hat.text | |
| diff --git a/The-Cat-in-the-Hat.text b/The-Cat-in-the-Hat.text | |
| new file mode 100644 | |
| index 0000000..c790cee | |
| --- /dev/null |
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Git is easy to learn and has a tiny footprint with lightning fast performance. It outclasses SCM tools like Subversion, CVS, Perforce, and ClearCase with features like cheap local branching, convenient staging areas, and multiple workflows.
start a working area (see also: git help tutorial)
- How do you manage long living feature branches?
- Are there additional code review/QA while a feature branch is being iterated on?
- How do you mitigate the likely hood of the feature branch breaking master.
- git branching strategy
git rev-list A ^B
master@{1} // Where was master 1 before- Click 'edit' for 'syfy_medium_82'
- Click on the 'Text settings' tab then check the 'Fixed width?' checkbox
- Click the 'Save preset' button
- Go to
/admin/config/media/image-styles/edit/1tile_program_2 - Click 'Override defaults'
- Click 'edit' for
Overlay (watermark) sites/syfy/modules/custom/ott_brand_media/images/roku_syfy_play_icon_12182015.png; 105, y:463; alpha:100%; width: 39px; height: 39px; upscale: on - Change 'file name' to 'sites/syfy/modules/custom/ott_brand_media/images/roku_syfy_play_icon.png'
- Click the 'Update effect' button
Once a PR is next in line and ready to be merged (all code review is finished and QA has signed off) the developer should locally:
$ git fetch --all
$ git rebase -p upstream/integration integration
$ git push -f origin integration
$ git rebase -p integration feature_branch