认识git

1:创建码云账号

2:建立项目

3:在本机安装git

4:在本机克隆项目远程仓库

  1. 配置git

  2. Clone项目

  1. 将本地仓库的内容提交到远程仓库

5:git的一些命令

  • git clone 拷贝并跟踪远程的master分支
  • git add 跟踪新文件或者已有文件的改动
  • git config --list 显示当前的Git配置
  • git init 在当前目录新建一个Git代码库
  • git config -e [--global] 编辑Git配置文件
  • git add [file1] [file2] ... 添加指定文件到暂存区
  • git add [dir] 添加指定目录到暂存区,包括子目录
  • git add. 添加当前目录的所有文件到暂存区
  • git commit -m [message] 提交暂存区到仓库区
  • git commit [file1] [file2] ... -m [message] 提交暂存区的指定文件到仓库区
  • git commit -a 提交工作区自上次commit之后的变化,直接到仓库区
  • git commit -v 提交时显示所有diff信息
  • git push [remote] [branch] 上传本地指定分支到远程仓库
  • git remote -v 显示所有远程仓库
  • git remote show [remote] 显示某个远程仓库的信息
  • git log显示当前分支的版本历史
posted @ 2017-09-08 16:39  向着太阳前进  阅读(151)  评论(0编辑  收藏  举报