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

Gitで覚えたコマンドを書いていく

Last updated at Posted at 2020-07-08

注意書き

勉強しながらメモした物です。
間違っている点があるかもしれませんので、
使用する場合は参考程度にしてください。

なおコマンドのオプションについて省いている部分があります。

Gitじゃないが使うコマンド

cd

「change directory」の略で、ディレクトリを移動する。

cd (相対パス or フルパス)

ls

「list segments」の略で、ファイルやディレクトリ情報を表示する

ls

mkdir

make directory」の略で、ディレクトリを新規作成する

mkdir ディレクトリ名

rm

「remove」の略で、ファイルやディレクトリの削除をする

rm ファイル名

cat

「concatenate」の略で(猫じゃないの!?)、ファイル結合や閲覧で使用する

cat ファイル名

Git コマンド

詳細後日記載予定

git config

git config --global user.name "GitHubのユーザー名"

git config --global user.email GitHubに登録したメール@example.com

git config --global core.editor "エディタ名 --wait"

git status

git commit

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?