1
0

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

【git 】ブランチの確認方法(新規順・古い順)

Last updated at Posted at 2020-06-30

###ブランチの一覧表示

初心者は忘れがちだと思うので、ブランチを確認する方法を記載します。
ターミナル上で、

$ git branch

と入力すれば、作業ディレクトリのブランチの一覧が表示されます。(ABC順)

 aritcle
 *branch
  create_user
 develop

「*」マークがついているのが今いるブランチです。

###新しい順・古い順
ブランチは、新しい順・古い順に並べることもできます。

git branch --sort=authordate #古い順
git branch --sort=-authordate #新しい順

新しい・古い順は個人的に便利だと思うので参考にしてみてください。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?