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】コマンドメモ(普段使うコマンド集)

Last updated at Posted at 2022-05-04

gitを使わなくなると途端に忘れてしまうのでメモする。

git clone

リポジトリにあるソースをローカルチェックアウトする。

git clone <url>

git add

変更した内容をステージングに登録する
add .カレントのすべての変更ファイルをステージングに登録する

git add .

git status

ステージングされたファイルの一覧を表示する

git status

git commit

git commit -m 'コメント'

テキストエディタを起動して複数行コメントを入れる場合
以下でデフォルトで設定されているエディタが起動される
起動したエディタでコメントを入力後保存して閉じるとコミットが実行される

git commit

git push

git push origin <branch>

git branch

ローカルブランチのみ表示する

git branch

リモート・ローカルブランチ全部表示する

git branch -a

git checkout

リモートからブランチをチェックアウトしてローカルブランチを新たに作成する

git checkout -b <local branch> <remote branch>

現在はgit swichコマンドが良いらしい
別途記載予定

git swich

記載予定

参考にしたサイト

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?