Gitコマンド一覧
Linuxの基本コマンド一覧表
自身の備忘録の為に、Linuxコマンドの一覧表を作成しておきます。
環境:Git CMD
現在のパスを表示
pwd
ファイルのテキストを記載する
echo "記載内容" > ファイル名
//GitHubの設定
//メールが登録されているか確認する
$git config --global user.email
//Githubにメールアドレスを追加する
$git config --global user.email "[email protected]"
//ローカルリポジトリを作成するためのコマンド
$ git init
Initialized empty Git repository in /Desktop/works/.git/
//指定したディレクトリにローカルリポジトリを作成
$ git init Desktop/works
//ディレクトリやインデックスの状態を確認するコマンド(ファイルがどのエリアに存在するのかを確認する。)
$ git status
//git status下記内容が表示される場合
//
On branch master
No commits yet
nothing to commit (create/copy files and use "git add" to track)
//GitHubにあるリポジトリをリモートリポジトリとして設定
$ git remote add origin https://github.com/M(自分のアカウント名)/(自分のプロジェクト名)
//コミットログの確認
$ git log
//リモートリポジトリをローカル(自分のPC)へクローンする
$ git clone https://github.com/masaki/example.git
//ファイルをステージングエリアに登録する
$ git add
//gitディレクトリに登録する
$git commit
//変更した内容を他のリポジトリに反映させる(2020/10以前はmain ⇒ master)。
$git push origin main
//ブランチ名を確認
$git branch
Author And Source
この問題について(Gitコマンド一覧), 我々は、より多くの情報をここで見つけました https://qiita.com/bje351493/items/1cdde0edae1fa4bc3bb7著者帰属:元の著者の情報は、元の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 .