Skip to content

Westa Извините, я тренируюсь работать с удаленными ветками #220

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions readmi.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Это какой-то проект на github
Чтобы внести изменения в чужой проект, надо быть авторизованным на github, для этого:
1. делаю fork интересного мне репозитория (он добавляется в мой удаленный репозиторий)

2. в локальном репозитории набираю:
```
git clone
```
3. Предлагаю внести изменения в ваш репозиторий:
SchoolList = [0] * 100
inFile = open('input.txt', 'r', encoding='utf8')
for line in inFile:
....line1 = line.split()
....SchoolList[int(line1[-2])] += 1
inFile.close()
вот и все изменения