3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

gitでローカルファイルをリモートリポジトリへpushする

Posted at

概要

gitへpushする際のコマンドをよく忘れるのでメモ

フォルダ移動
ローカルリポジトリの作成
add
commit
リモートリポジトリの追加
リモートリポジトリの削除
push

フォルダ移動

対象のファイルがあるディレクトリへ移動

詳細
$ cd [ディレクトリパス]
実例
$ cd /root/test/playbooks/

ローカルリポジトリの作成

$ git init

add

gitに登録したいファイルをaddする

詳細
$ git add [ファイル名]
実例
$ git add *

commit

詳細
$ git commit -m [コミットコメント]
実例
$ git commit -m "first commit"

リモートリポジトリの追加

詳細
git remote add [リモートリポジトリ名] [リモートリポジトリURL]
実例
$ git remote add origin git@github.com:ichikawa0311/playbook-test.git

リモートリポジトリの削除

誤ってリモートリポジトリを追加してしまった時の削除方法

詳細
$ git remote rm [リモートリポジトリ名]
実例
$ git remote rm origin

push

詳細
git push [リモートリポジトリ名] [ブランチ名]
実例
git push origin master
3
1
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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?