0
2

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 新規リポジトリにプログラムをPushする方法

Last updated at Posted at 2024-12-04

git 新規リポジトリに既存のプログラムをPushする方法

~流れ~

① GitHubでリポジトリ作成
② ローカルでプログラムアップロード
③ バージョン管理用タグを付け(必要な場合)

1. GitHubで新規リポジトリを作成

  1. GitHubにログインし、右上の「+」ボタンをクリックして「New repository」を選択します。
  2. リポジトリ名を入力し、必要に応じて説明を追加します。
  3. privateかpublicを選択(非公開か公開か)
  4. 「Create repository」をクリックします。

2. ローカルリポジトリの初期化と既存プログラムのアップロード

  1. ターミナルを開き、既存のプロジェクトディレクトリに移動します。

    cd /path/to/your/project
    
    
  2. Gitリポジトリを初期化します。

    git init
    
    
  3. すべてのファイルをステージングします。

    git add .
    
    
  4. 最初のコミットを行います。

    git commit -m "Initial commit"
    
    
  5. GitHubリポジトリをリモートとして追加します。

    git remote add origin https://github.com/username/repository.git
    
    
  6. ブランチを名変更(デフォルトがmainの場合変更しなくても良い)

    //ブランチ名がmasterの場合mainに変更(mainの方が書きやすいから)
    git branch -m master main
    または
    git branch -M main
    
    
  7. ブランチをpush(アップロード)

    git push -u origin main
    
    

    ※成功するとGitHubにアップロードされます。

3. タグの作成とプッシュ

 バージョンごとにタグを付けて管理する方法です。
 これをすることで過去のバージョンの状態を同じリポジトリで確認できます。

 ※現在のローカルの状態をpushしたものにタグが付くものになるので
 リモートのmainブランチにタグが付くわけではないことにご注意ください。

  1. タグを作成します。(メッセージ内容付き)

    git tag -a v1.0 -m "メッセージ内容(適当)"
    
    
  2. タグをリモートリポジトリにプッシュします。

    git push origin v1.0
    
0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?