Skip to content

Commit

Permalink
Add TODOs.
Browse files Browse the repository at this point in the history
  • Loading branch information
croesch committed Aug 23, 2019
1 parent 7e42878 commit 6cd9fe6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/git-merge-repos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ function git_utag() {
git -C "${repo}" tag "${tag}" "${commit_id}"
if [ ! $? -eq 0 ]
then
# TODO add test for this branch
git -C "${repo}" fetch "${remote}" "${commit_id}"
git -C "${repo}" tag "${tag}" "${commit_id}" || return 1
fi
Expand Down Expand Up @@ -179,6 +180,7 @@ function git_merge_tags() {
merge_id="${merge_tags[refs/tags/$tag]}"
if [ "${origin_id}" = "${merge_id}" ]
then
# TODO add tag for this branch
echo "Tags ${tag} point both to '${origin_id}'."
continue
fi
Expand Down

0 comments on commit 6cd9fe6

Please sign in to comment.