【Git】Git常用命令备忘录
由于我是Git的初学者,我将常用的命令整理在一起。
我尝试在本地存储库中创建了一个名为command.txt的文件
添加
在舞台区域添加文件的命令
$ git add . #カレントディレクトリ配下すべてをadd
$ git add <ファイル名> #ファイルをadd
$ git add <ディレクトリ名> #ディレクトリをadd
# 作ったファイルをadd
$ git add command.txt
承诺
将创建的文件注册到Git的命令
$ git commit #commit
$ git commit -m "メッセージ" #ファイルをメッセージ付きでcommit
$git commit command.txt
请在显示的COMMIT_EDITMSG文件的最顶行添加注释。
command.txtの追加 ←コメント
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch master
# Your branch is ahead of 'origin/master' by 3 commits.
# (use "git push" to publish your local commits)
#
# Changes to be committed:
# new file: command.txt
#
状态
可以使用以下命令来查看最新的修改信息。
$ git status
On branch master
Your branch is ahead of 'origin/master' by 4 commits.
(use "git push" to publish your local commits)
nothing to commit, working tree clean
刚刚提交了,所以显示没有要提交的内容。
推动 (tuī
更新远程仓库分支历史记录的命令。
$ git remote add origin https://github.com/user/repo.git
# http~以降は自分で作成したリポジトリのURL
git push <リモート名> <ブランチ名>
git push origin master #初回のpushはgit push -u origin master
请详细说明git push命令中的-u选项。