GIT学习笔记

参考资料

廖雪峰老师的GIT教程,以及runoob的GIT教程。

安装配置

  • Ubuntu/Linux使用sudo apt-get install git安装
  • WIndows在Git官网下载安装
  • 安装完成后要配置用户信息,使用$ git config --global user.name "Your Name"$ git config --global user.email "[email protected]"命令配置你的用户名和邮箱,否则无法提交。

时光穿梭机

命令 操作
git init 创建仓库
git add [filename] 提交文件到暂存区(stage)
git commit -m "[message]" 提交文件到分支(master)
git status 查看状态
git diff 查看修改
git reset --hard HEAD^ 退回上一版本
git log 查看提交记录
git reflog 查看提交历史记录
git reset --hard [id] 退回指定版本
git checkout -- file 丢弃工作区修改
git reset HEAD [filename] 丢弃暂存区文件
git rm [filename] 删除分支中的文件

远程仓库

  • 创建你的SSHKEY ssh-keygen -t rsa -C "[email protected]"
  • 在远程仓库出创建仓库
命令 操作
git remote add origin [email protected]:[Uname]/[Rname].git 关联远程仓库
git push -u origin master 关联并推送(首次使用)
git push origin master 推送
git pull origin master 取回远程仓库内容
git clone [email protected]:[Uname]/[Rname].git 克隆远程仓库

你可能感兴趣的:(GIT学习笔记)