Skip to content

Git

コマンド集

  • リポジトリを作成

    1
    $ git init
    

  • ローカルにクローンする

    1
    $ git clone <url>
    

  • インデックスに追加(Git管理の対象にあげる)

    1
    2
    $ git add <ディレクトリ名やファイル名>  
    () `$ git add test``$ git add test.md
    

  • コミットする

    1
    2
    $ git commit -m <"コメント">  
    () `$ git commit -m "テストです"
    

  • addとcommitを同時に行う

    1
    2
    $ git commit -a <ディレクトリ名やファイル名>  
    () `$ git commit -a test``$ git commit -a test.md
    

  • ローカルのブランチ名を変更(現在いないブランチの場合)

    1
    $ git branch -m <古いブランチ名> <新しいブランチ名>
    

  • ローカルのブランチ名を変更(現在いるブランチの場合)

    1
    $ git branch -m <新しいブランチ名>
    

  • リモートリポジトリの確認

    1
    $ git remote -v
    

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

    1
    2
    $ git remote add origin <追加したいリポジトリ>  
    () `$ git remote add origin https://github.com/○○○/×××.git
    

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

    1
    $ git remote rm origin
    

  • リモートリポジトリの変更

    1
    $ git remote set-url origin <new url>
    

  • プッシュする

    1
    2
    $ git push -u origin master  
    (2回目以降は `$ git push` で可能)
    

  • ブランチを作成

    1
    2
    $ git branch <ブランチ名>  
    () `$ git branch new-branch
    

  • ブランチの一覧を表示(*が付いているのが現在のブランチ)

    1
    $ git branch