Git学习
本地仓库常用命令
-
git:查看系统有没有装git
-
设置全局属性,用户名和邮箱
- git config --global user.name"your name"
- git config --global user.email"your email"
-
git init:创建版本库
-
git add hello.txt :将文件添加到临时区
-
git commit -m "create hello.txt file":提交文件到git,写上附加信息
-
git status:查看当前的Git仓库的状态
- 提交完成时状态 提交完成时状态
- 未提交时状态 未提交时状态
-
git diff:查看文件修改内容
-
git log:查看从近到远的提交日志
-
git reset - -hard commit_id:回退版本至所指版本
-
git reflog:查看近期git操作
- 查看近期作业 近期git操作(从近到远)
-
ssh-keygen -t rsa -C "youremail@example.com":创建SHH Key
- 找到自己目录下的.ssh文件夹,id_rsa.pub文件里是秘钥 SHH Key
-
git push origin master:提交到远程仓库
-
git pull:下载远程仓库到本地
网友评论