|
1 |
| -import os , random |
2 |
| - |
3 |
| -for i in range(200): |
4 |
| - d = str(i) + 'days ago' |
5 |
| - rand = random.randrange(1, 12) |
6 |
| - with open('test.txt','a') as file: |
7 |
| - file.write(d+'\n') |
8 |
| - os.system('git add test.txt') |
9 |
| - os.system('git commit --date=" 2020-'+str(rand)+'-'+d+'" -m 1') |
10 |
| -os.system('git push -u origin main') |
| 1 | +import os |
| 2 | +import random |
| 3 | + |
| 4 | +# Get number of commits from the user |
| 5 | +try: |
| 6 | + NUM_COMMITS = int(input("Enter the number of commits to create: ")) |
| 7 | +except ValueError: |
| 8 | + print("Please enter a valid integer for the number of commits.") |
| 9 | + exit(1) |
| 10 | + |
| 11 | +# Get the year from the user |
| 12 | +try: |
| 13 | + year = int(input("Enter the year for the commits (e.g., 2024): ")) |
| 14 | +except ValueError: |
| 15 | + print("Please enter a valid year.") |
| 16 | + exit(1) |
| 17 | + |
| 18 | +# Create a file for dummy commits |
| 19 | +file_path = 'test.txt' |
| 20 | +with open(file_path, 'a') as file: |
| 21 | + file.write('Initial commit\n') |
| 22 | +os.system('git add test.txt') |
| 23 | +os.system('git commit -m "Initial commit"') |
| 24 | + |
| 25 | +for i in range(NUM_COMMITS): |
| 26 | + # Generate random month and day offset |
| 27 | + month = random.randint(1, 12) |
| 28 | + day_offset = i % 28 + 1 # Ensures the day is between 1 and 28 to avoid invalid dates |
| 29 | + |
| 30 | + # Construct the commit date string |
| 31 | + commit_date_str = f"{year}-{month:02d}-{day_offset:02d} 12:00:00" |
| 32 | + |
| 33 | + # Write to file to create a change |
| 34 | + with open(file_path, 'a') as file: |
| 35 | + file.write(f'Commit for {commit_date_str}\n') |
| 36 | + |
| 37 | + # Add and commit changes with the specified date |
| 38 | + try: |
| 39 | + os.system('git add test.txt') |
| 40 | + os.system(f'git commit --date="{commit_date_str}" -m "Commit #{i+1}"') |
| 41 | + except Exception as e: |
| 42 | + print(f"Error during commit {i+1}: {e}") |
| 43 | + |
| 44 | +# Push commits to the remote repository |
| 45 | +try: |
| 46 | + os.system('git push -u origin main') |
| 47 | +except Exception as e: |
| 48 | + print(f"Error pushing to repository: {e}") |
| 49 | + |
11 | 50 |
|
12 | 51 | #git commit --amend --no-edit --date="Fri Nov 6 20:00:00 2015 -0600"
|
13 | 52 | #git fetch origin master
|
|
0 commit comments