0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【初心者】Git hub使用方法

Posted at

やること 

pythonで作ったプログラム(仮想環境以外)をgitにアップロードする。
アップロードしたものを更新する。

アップロード手順

C:\Users\sharisa\Videos\ラズベリーパイIpad
本日はここの下の階層をGitにアップロードすることとする。

まずgithubにアクセス
https://github.com/
image.png

New repositroryを選択

image.png
Repository nameを任意の文字に変更する。日本語は多分ダメ。
image.png
Publicにすると、公開される
Privateにすると限定公開
image.png

image.png
青い背景のところでurlが作成されてる。
アップロード作業が終わったらここにアクセスすればソースコードが手に入るようになります。


次はコマンドプロンプト

C:\Users\Root\Documents\Githubアップロード\human_detectionフォルダとその中のファイルをGitHubにアップロードする手順です。

cd "C:\Users\Root\Documents\Githubアップロード\human_detection"
git init
https://github.com/arisaEN/human-detection.git

リモートリポジトリ作成

git add .  # 全てのファイルをステージング
git commit -m "Initial commit"  # コミット
git branch -M main  # ブランチ名をmainに変更(GitHubの標準)
git push -u origin main  # GitHubにプッシュ

これでGithubアップロード完了しました。
https://github.com/arisaEN/ras-view

更新手順

cd "C:\Users\Root\Documents\Githubアップロード\human_detection"
git status

更新されたファイルを確認します。

git add .

すべての更新されたファイルをステージングします。

git commit -m "Updated files with recent changes"

変更内容をコミットします。コミットメッセージは自由に記述できます。

git push origin main

GitHubにプッシュする

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?