https://github.com/donno2048/1000000
https://github.com/donno2048/1000000
commits github
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/donno2048/1000000
- Owner: donno2048
- Created: 2021-01-23T20:38:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-23T21:02:13.000Z (over 5 years ago)
- Last Synced: 2025-02-24T11:17:21.304Z (over 1 year ago)
- Topics: commits, github
- Homepage:
- Size: 130 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 1000000:
This is the script used to create this repo:
```bash
mkdir 1000000
cd 1000000/
git init
python3 ../1000000.py | git fast-import
git remote add origin https://github.com/donno2048/1000000.git
git push origin master
```
Where this is the content of _1000000.py_:
```py
print('blob\nmark :1\ndata 1\na\nreset refs/heads/master\ncommit refs/heads/master\nmark :2\nauthor donno2048 0 +0000\ncommitter donno2048 0 +0000\ndata 1\n\nM 100644 :1 a\n')
for i in range(2, 1000001):print(f'commit refs/heads/master\nmark :{i + 1}\nauthor donno2048 0 +0000\ncommitter donno2048 0 +0000\ndata 1\n\nfrom :{i}\n')
```