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?

More than 1 year has passed since last update.

git , githubを勉強し始めたときにメモっておいているコマンドリスト

Posted at

私はWEBマーケティングコンサルティングを行っていますが、
開発用途ではなく、ビジネス用途でgithubを使っています。

チーム内ポータルとしても正直使いやすいんですよね。

ただ、開発といったらおこがましいかもしれないですが、textlintをこれから活用していくことになり
githubで辞書管理が必要だろうと考え、絶賛勉強中。

本当に今はいい時代。youtubeで見て学んだ必要不可欠なコマンドをメモっているので、なんとなくシェアしておこうと思います。

gitで add, commit ,push , switchの練習をするためにコマンドをまとめているmdファイルを作成し日々github上で更新して管理をする練習中。

前置きが長すぎたのでこのへんで。

ブランチ

ブランチの作成 + 作成したブランチへそのまま切り替え

git switch -c ブランチ名

ブランチの切り替え

git switch ブランチ名

ブランチの確認

git branch

push

main,masterブランチのとき

git push origin

開発ブランチのとき

git push origin 開発ブランチ名

ログの確認

git log

終了方法はq

編集中のファイル確認

git status

コミット

git commit -m "コミットメッセージ"

-mを忘れるな。

gitに更新したファイルを追加

git add .
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?