tracinginsights commited on
Commit
55a036a
·
1 Parent(s): 18541a9

Create clone.py

Browse files
Files changed (1) hide show
  1. clone.py +6 -0
clone.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from git import Repo
2
+ import os
3
+
4
+ GITHUB_PAT = os.environ['GITHUB']
5
+
6
+ Repo.clone_from(f'https://tracinginsights:{GITHUB_PAT}@github.com/TracingInsights/Charts.git', 'repo_directory' )