Skip to content

Commit c7e61e4

Browse files
Refactor the code 🔨
1 parent a1c2dd8 commit c7e61e4

File tree

3 files changed

+63
-412
lines changed

3 files changed

+63
-412
lines changed

‎README.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,15 @@
1-
# hack-github-contributions
1+
# Hack GitHub Contributions
22
Hack GitHub Contributions By Randoms Old Commits
3+
4+
###### Note: You should login your github account in your terminal
5+
6+
### Usage
7+
Just need to run:
8+
9+
```python
10+
python3 git.py
11+
```
12+
Next, it will prompt you to enter the number of commits and the specific year to which you'd like to commit the changes.
13+
14+
## Booom..
15+
![Imgur](https://i.imgur.com/wnDyZ2s.png)

‎git.py

+49-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,52 @@
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+
1150

1251
#git commit --amend --no-edit --date="Fri Nov 6 20:00:00 2015 -0600"
1352
#git fetch origin master

0 commit comments

Comments
 (0)