1
2

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 2019-01-26

3歩歩くと忘れてしまうのでまとめた。
sourcetreeを使っているけど、強いエンジニアになるためコマンドでもたたきたいと思ったので触っています。


// init
git init

// pull
git pull origin master

// 変更点をステージにあげる
git add .

// commit
git commit -m 'commit message'

// 現在の状況をみる
git status

// 現在いるブランチを確認する
git branch

// logを見る
git log

// logをonelineで見る
git log --oneline

// push
// -u(--set-upstream)
git push -u origin branch_name

// 二回目からこれでいい
git push

// 新しくブランチを作成して、そのブランチに移動する
git checkout -b new_branch

// 未プッシュのものを確認する
git log origin/master..master

参考
git
Reference
https://git-scm.com/docs

さるまりんのガレージ
gitでまだpushしていないcommitを確認する方法
https://salumarine.com/how-to-see-commits-not-pushed-to-the-origin-yet/

Git で新規ブランチを切って Push する時に何やら怒られるヤツの回避方法
http://neos21.hatenablog.com/entry/2017/05/10/080000

1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?