- 码云注册与新建项目
注册并新建项目
- Git安装并配置
安装
配置
- clone项目
附:一些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显示当前分支的版本历史
……