LoginSignup
0
0

More than 1 year has passed since last update.

Git 基本操作

Posted at

クローン

commond
$ git clone {GitリポジトリのURL}

ローカルブランチ作成

commond
$ git branch {ローカルブランチ名称}
$ git branch

リモートブランチ作成

commond
$ git checkout {プッシュするローカルブランチ名称}
$ git branch
$ git push -u {リモートリポジトリ名称} {リモートブランチ名称}
# ex) git push -u origin develop

コミット

commond
$ git add {コミットするファイル名称}
# ex) git add .
$ git commit -m "{コメント}"

プッシュ

commond
$ git push {リモートリポジトリ名称} {リモートブランチ名称}
# ex) git push origin develop
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