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 commnd

Last updated at Posted at 2019-03-02

1、リポジトリにあるプロジェクトを自分のローカルにクローンする

$ git clone

2、masterから自分のブランチを切る

$ git branch ブランチ名  or  git checkout -b ブランチ名

3、機能がある程度できたらローカルブランチにコミットするファイルを指定

$ git add .   or   $ git add コミットしたいファイルのURL
$ git status→変更したファイルを表示  $ git diff→差分を表示 $ git log→履歴を確認

4、コミットする

$ git commit -m ‘コメント’

5、コミットしたものをプッシュする

$ git push origin ブランチ名

6、リモートに自分が作った機能を文章で後悔する 

$ hub pull-request -a リクエストを送るユーザー
※上記のコマンドを入力するためには事前にhubコマンドを使えるように捨て置くこと

7、マスターブランチにマージする

$ git marge ブランチ名
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?