0
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 5 years have passed since last update.

Gitの使い方

Last updated at Posted at 2017-05-04

投稿テストを兼ねて

基本

  • ローカルリポジトリへの追加
    git add "ファイル名"

  • ローカルリポジトリに現在のディレクトリ構造を反映
    git add ./ -A

  • ローカルリポジトリへのコミット
    git commit -m "コメント"

  • リモートリポジトリアドレスの追加
    git remote add "リポジトリ名" "アドレス"

  • リモートリポジトリへの反映
    git push "リポジトリ名" master

  • リモートリポジトリ一覧を表示する
    git remote

  • リモートリポジトリからファイルを持ってくる
    git clone "URL"

  • リモートリポジトリの変更を反映させる
    git pull "リポジトリ名"

ブランチ関連

  • ブランチ一覧の表示
    git branch

  • ブランチの生成
    git branch (ブランチ名)

  • ブランチの切り替え
    git checkout (ブランチ名)

ブランチの削除

  • マージ済みブランチの表示
    git branch --merged

  • マージ済みブランチの削除
    git branch -d (ブランチ名)

  • マージしてないブランチの削除
    git branch -D (ブランチ名)

0
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
0
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?