GitHub – AWS Amplify

Django

GitHub に新しいリポジトリ作成して、pushまで

GitHubのRepositoriesで、「NEW」ボタンを押下して、新たなリポジトリ作成

そこでコピーしたものを、ローカルで作成したWEBアプリのディレクトリでCLIで貼り付け

PS C:\Users\***\dev\djangoProject\django-createcsv\create-csv-env\createcsvproject>
echo "# create-item-page" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/witplus47/create-item-page.git
git push -u origin main

以下、コマンド追加して、プッシュする

PS C:\Users\***\dev\djangoProject\django-createcsv\create-csv-env\createcsvproject> git add .
PS C:\Users\***\dev\djangoProject\django-createcsv\create-csv-env\createcsvproject> git status
On branch main
Your branch is up to date with 'origin/main'.

Changes to be committed:
(use "git restore --staged <file>..." to unstage)
new file: .ipynb_checkpoints/Untitled-checkpoint.ipynb
new file: Untitled.ipynb
new file: createcsvapp/__init__.py
new file: createcsvapp/__pycache__/__init__.cpython-39.pyc
new file: createcsvapp/__pycache__/admin.cpython-39.pyc
new file: createcsvapp/__pycache__/apps.cpython-39.pyc
new file: createcsvapp/__pycache__/forms.cpython-39.pyc
new file: createcsvapp/__pycache__/models.cpython-39.pyc
new file: createcsvapp/__pycache__/scraping.cpython-39.pyc
new file: createcsvapp/__pycache__/urls.cpython-39.pyc
new file: createcsvapp/__pycache__/views.cpython-39.pyc
new file: createcsvapp/admin.py
new file: createcsvapp/apps.py
new file: createcsvapp/forms.py
new file: createcsvapp/migrations/0001_initial.py
new file: createcsvapp/migrations/0002_product.py
new file: createcsvapp/migrations/__init__.py
new file: createcsvapp/migrations/__pycache__/0001_initial.cpython-39.pyc
new file: createcsvapp/migrations/__pycache__/0002_product.cpython-39.pyc
new file: createcsvapp/migrations/__pycache__/__init__.cpython-39.pyc
new file: createcsvapp/models.py
new file: createcsvapp/scraping.py
new file: createcsvapp/static/css/style.css
new file: createcsvapp/templates/createcsvapp/base.html
new file: createcsvapp/templates/createcsvapp/pagedata.html
new file: createcsvapp/templates/createcsvapp/pagedata_form.html
new file: createcsvapp/templates/createcsvapp/pagedata_list.html
new file: createcsvapp/templates/createcsvapp/results.html
new file: createcsvapp/templates/createcsvapp/search.html
new file: createcsvapp/tests.py
new file: createcsvapp/urls.py
new file: createcsvapp/views.py
new file: createcsvproject/__init__.py
new file: createcsvproject/__pycache__/__init__.cpython-39.pyc
new file: createcsvproject/__pycache__/settings.cpython-39.pyc
new file: createcsvproject/__pycache__/urls.cpython-39.pyc
new file: createcsvproject/__pycache__/wsgi.cpython-39.pyc
new file: createcsvproject/asgi.py
new file: createcsvproject/settings.py
new file: createcsvproject/urls.py
new file: createcsvproject/wsgi.py
new file: db.sqlite3
new file: manage.py
PS C:\Users\***\dev\djangoProject\django-createcsv\create-csv-env\createcsvproject> git commit -m "first commit"
[main fa05e9d] first commit
43 files changed, 772 insertions(+)
create mode 100644 .ipynb_checkpoints/Untitled-checkpoint.ipynb
create mode 100644 Untitled.ipynb
create mode 100644 createcsvapp/__init__.py
create mode 100644 createcsvapp/__pycache__/__init__.cpython-39.pyc
create mode 100644 createcsvapp/__pycache__/admin.cpython-39.pyc
create mode 100644 createcsvapp/__pycache__/apps.cpython-39.pyc
create mode 100644 createcsvapp/__pycache__/forms.cpython-39.pyc
create mode 100644 createcsvapp/__pycache__/models.cpython-39.pyc
create mode 100644 createcsvapp/__pycache__/scraping.cpython-39.pyc
create mode 100644 createcsvapp/__pycache__/urls.cpython-39.pyc
create mode 100644 createcsvapp/__pycache__/views.cpython-39.pyc
create mode 100644 createcsvapp/admin.py
create mode 100644 createcsvapp/apps.py
create mode 100644 createcsvapp/forms.py
create mode 100644 createcsvapp/migrations/0001_initial.py
create mode 100644 createcsvapp/migrations/0002_product.py
create mode 100644 createcsvapp/migrations/__init__.py
create mode 100644 createcsvapp/migrations/__pycache__/0001_initial.cpython-39.pyc
create mode 100644 createcsvapp/migrations/__pycache__/0002_product.cpython-39.pyc
create mode 100644 createcsvapp/migrations/__pycache__/__init__.cpython-39.pyc
create mode 100644 createcsvapp/models.py
create mode 100644 createcsvapp/scraping.py
create mode 100644 createcsvapp/static/css/style.css
create mode 100644 createcsvapp/templates/createcsvapp/base.html
create mode 100644 createcsvapp/templates/createcsvapp/pagedata.html
create mode 100644 createcsvapp/templates/createcsvapp/pagedata_form.html
create mode 100644 createcsvapp/templates/createcsvapp/pagedata_list.html
create mode 100644 createcsvapp/templates/createcsvapp/results.html
create mode 100644 createcsvapp/templates/createcsvapp/search.html
create mode 100644 createcsvapp/tests.py
create mode 100644 createcsvapp/urls.py
create mode 100644 createcsvapp/views.py
create mode 100644 createcsvproject/__init__.py
create mode 100644 createcsvproject/__pycache__/__init__.cpython-39.pyc
create mode 100644 createcsvproject/__pycache__/settings.cpython-39.pyc
create mode 100644 createcsvproject/__pycache__/urls.cpython-39.pyc
create mode 100644 createcsvproject/__pycache__/wsgi.cpython-39.pyc
create mode 100644 createcsvproject/asgi.py
create mode 100644 createcsvproject/settings.py
create mode 100644 createcsvproject/urls.py
create mode 100644 createcsvproject/wsgi.py
create mode 100644 db.sqlite3
create mode 100644 manage.py
PS C:\Users\***\dev\djangoProject\django-createcsv\create-csv-env\createcsvproject> git push
Enumerating objects: 54, done.
Counting objects: 100% (54/54), done.
Delta compression using up to 20 threads
Compressing objects: 100% (48/48), done.
Writing objects: 100% (53/53), 25.91 KiB | 2.59 MiB/s, done.
Total 53 (delta 3), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (3/3), done.
To https://github.com/witplus47/create-item-page.git
4f7a142..fa05e9d main -> main

GitHubへアップ終了

 

タイトルとURLをコピーしました