[随時更新予定] コマンドまとめ
はじめに
僕がよく使うコマンドまとめを備忘録として記載しました。
git
ローカルにリポジトリを作成し、リモートにプッシュする
プロジェクトのルートディレクトリにて、以下のコマンドを実行します。
$ git init
$ git add .
$ git commit -m "Initial commit"
$ git remote add origin https://github.com/XXXX/XXXXXX.git
$ git push -u origin master
https://github.com/XXX/XXXXXX.git
は、sshのURLでの可能。
またgit add
(ファイルを登録するコマンド)をする場合、
ルートディレクトリ以下全てのファイルをコミットしたいなら$ git add .
ファイルを指定するならgit add <ファイル名>
としてください。
Author And Source
この問題について([随時更新予定] コマンドまとめ), 我々は、より多くの情報をここで見つけました https://qiita.com/maru__maru/items/05497d5540a758639fd4著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .