Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
Zanger67 committed Jul 26, 2024
1 parent 6bdd7d5 commit 957a23c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion main.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@
" chdir('../')\n",
" print(f'README path: {getcwd() = }')\n",
"\n",
" cmd = r\"git log -M --format=%ct --reverse --\".split()\n",
" cmd = r\"git log -M --follow --format=%ct --reverse --\".split()\n",
" # cmd = r\"git log --follow --format=%ct --reverse --\".split()\n",
" output = {}\n",
" \n",
Expand All @@ -312,6 +312,8 @@
" \n",
" # print((15 - pqBarsPrinted) * '=', '\\n\\n')\n",
" # else :\n",
" \n",
" \n",
" with tqdm(total=len(paths)) as pbar :\n",
" # with tqdm(total=len(paths), position=0, leave=True) as pbar :\n",
" for i, path in enumerate(paths) :\n",
Expand Down
4 changes: 3 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def getAllCTimesViaGit(paths: List[str]) -> Dict[str, Tuple[datetime, datetime]]
chdir('../')
print(f'README path: {getcwd() = }')

cmd = r"git log -M --format=%ct --reverse --".split()
cmd = r"git log -M --follow --format=%ct --reverse --".split()
# cmd = r"git log --follow --format=%ct --reverse --".split()
output = {}

Expand All @@ -244,6 +244,8 @@ def getAllCTimesViaGit(paths: List[str]) -> Dict[str, Tuple[datetime, datetime]]

# print((15 - pqBarsPrinted) * '=', '\n\n')
# else :


with tqdm(total=len(paths)) as pbar :
# with tqdm(total=len(paths), position=0, leave=True) as pbar :
for i, path in enumerate(paths) :
Expand Down

0 comments on commit 957a23c

Please sign in to comment.