基础环境
- 本操作以LinuxMint 18.1(Ubuntu 16.04)为例。
- 假设托管平台为码云。
- 你的名字:your-name
- 你的邮件:your-email@some.com
- 你的项目:your-project
- 你的项目所在本地目录为: ~/Code/your-project
安装Git
sudo apt install git
配置本地用户
建议与 码云 注册的用户相同
git config --glabal user.email "your-email@some.com"
git config --glabal usre.name "your-name"
在码云注册用户
在码云建立项目your-project
将项目克隆到本地
cd ~/Code
git clone https://git.oschina.net/your-name/your-project.git
** 以下步骤每次修改提交文件都要做 **
你可以在项目目录下建立修改文件 (~/Code/your-project)
添加新增或修改开的xxx文件,以下操作要在在 ~/Code/your-project 目录下进行,可以用*号表示所有文件
git add xxx
提交确认本次修改
git commit -m "这是修改的说明"
同步到远程版本库
git push
会提示输入远程库的邮箱和密码
** 以下是查看版本和提交情况的命令 **
查看版本状态
git status
查看版本日志
git log
** 其他相关命令请自行参考网上相关文档 **
git checkout
git reflog
git push
git reset
...
人生苦短,我用Python。让我们自己动手创造美好生活吧。
徒步学天下( hhxx2014@qq.com)
2017年6月26日于中国林都