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リポジトリの初期化とリモートリポジトリへのプッシュ

Posted at

Gitリポジトリの初期化からリモートリポジトリへのプッシュまでの手順をまとめました。
備忘録として役立ててください。

1. Gitリポジトリの初期化
プロジェクトのディレクトリに.gitフォルダが作成され、Gitでバージョン管理ができるようになります。

git init

メッセージ:

Initialized empty Git repository in /path/to/your/project/.git/

2. ファイルの作成と追加
次に、README.mdファイルを作成し、それをGitのステージングエリアに追加しました。

echo "# My Project" > README.md
git add README.md

3. 最初のコミット
ステージングエリアに追加したファイルをコミットしました。これにより、変更がリポジトリに保存されます。

メッセージ:

git commit -m "Initial commit"
[master (root-commit) 960c36b] Initial commit
1 file changed, 1 insertion(+)
create mode 100644 README.md

4. リモートリポジトリの設定
GitHub上にリポジトリを作成し、そのリモートリポジトリのURLをローカルリポジトリに設定しました。

git remote add origin https://github.com/your-username/your-repository.git

5. リモートリポジトリへのプッシュ
ローカルリポジトリの変更をリモートリポジトリにプッシュしました。これにより、GitHub上のリポジトリに変更が反映されます。

git push -u origin master

メッセージ:

info: please complete authentication in your browser...
Enumerating objects: 3, done.
Counting objects: 100% (3/3), done.
Writing objects: 100% (3/3), 231 bytes | 77.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
remote:
remote: Create a pull request for 'master' on GitHub by visiting:
remote:      https://github.com/your-username/your-repository/pull/new/master
remote:
To https://github.com/your-username/your-repository.git
 * [new branch]      master -> master
branch 'master' set up to track 'origin/master'.

6. アカウント変更時の対応
GitHubのアカウントを変更する場合、リモートリポジトリのURLを新しいアカウントのリポジトリに変更します。

git remote set-url origin https://github.com/new-username/new-repository.git
git push -u origin master

これで、リモートリポジトリに変更が反映されます。

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?