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

概要

いつもはネットワーク関連の記事を書いているのですが、気分転換として
今回は自分が実際に使ったりしているGitのコマンドを簡単にまとめてみました。

今回の記事とは特に関係ありませんが、ネットワークについての基礎を学びたいという方は是非下記の記事を読んでみてください。

Gitのコマンド一覧

コミット

git commit -m "コミット名"

Gitログの確認

git log

簡潔にみたい場合は下記

git log --oneline

ブランチの一覧を表示

git branch

他のブランチを現在のブランチにマージ

git merge [ブランチ名]

他のリポジトリのデータを取得してローカルのブランチにプル

git pull [リポジトリ] [ブランチ名]

ローカルブランチのデータをリモートブランチに送る

git push [リポジトリ] [ブランチ名]

最後に

これで以上となります。
今回は自分が作業をしていて使う頻度が多めのものを簡単にまとめました。
他にも色々コマンドはあるので是非調べてみてください。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?