-
-
Notifications
You must be signed in to change notification settings - Fork 342
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #144 from vkill/feature-git_repo_tree
Support repo_tree for git update-code
- Loading branch information
Showing
4 changed files
with
68 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,6 +124,7 @@ Role Variables | |
# Variables used in the Git deployment strategy | ||
ansistrano_git_repo: [email protected]:USERNAME/REPO.git # Location of the git repository | ||
ansistrano_git_branch: master # What version of the repository to check out. This can be the full 40-character SHA-1 hash, the literal string HEAD, a branch name, or a tag name | ||
ansistrano_git_repo_tree: "" # If specified the subtree of the repository to deploy | ||
ansistrano_git_identity_key_path: "" # If specified this file is copied over and used as the identity key for the git commands, path is relative to the playbook in which it is used | ||
|
||
# Variables used in the download deployment strategy | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ ansistrano_keep_releases: 0 | |
## GIT pull strategy | ||
ansistrano_git_repo: [email protected]:USERNAME/REPO.git | ||
ansistrano_git_branch: master | ||
ansistrano_git_repo_tree: "" | ||
ansistrano_git_identity_key_path: "" | ||
|
||
## RSYNC push strategy | ||
|
This file contains 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
This file contains 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