Skip to content

Commit f11c8db

Browse files
committed
[mix-messy-docs] Add remote branch tracking
1 parent 00cb404 commit f11c8db

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

mix_messy_docs/download.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
1+
from exercise_utils.git import track_remote_branch
2+
3+
14
def setup(verbose: bool = False):
2-
pass
5+
remote_name = "origin"
6+
remote_branches = ["feature-search", "feature-delete", "list"]
7+
for remote_branch_name in remote_branches:
8+
track_remote_branch(remote_name, remote_branch_name, verbose)

0 commit comments

Comments
 (0)