- treeish: anything which references a commit (e.g. branch, HEAD, HEAD
10, master15, SHA)
Displays file from a specific commit
Checkout a file from a specific commit
e.g.
| applications: | |
| - name: 'project1' | |
| changed_when: | |
| - './project1/*' | |
| jobs: | |
| include: | |
| - name: "project1-fast-tests" | |
| if: "project1 IN changed_applications" | |
| - name: "project1-slow-tests" |
| Rebasing Git Flow | |
| ================= | |
| TL;DR | |
| ----- | |
| - All feature branches are rebased to latest master | |
| - All staging branches are rebased to latest master | |
| - All finalized feature branches are rebased then --no-ff merged into a staging branch | |
| - All staging branches gets signed off and tested before --no-ff into master |
| @for /F "delims=" %%I in ("%~dp0") do @set xampp_install_root=%%~fI | |
| @set PATH=%xampp_install_root%\php;%PATH% | |
| @start %COMSPEC% |