一、简介
git作为目前比较流行的版本控制系统,被各个互联网公司广泛使用着。目前国外的网站有GitHub,国内的oschina的git。
网址:https://github.com/
https://gitee.com/
二、使用说明
1、注册账号
进入https://gitee.com/signup,输入相应的信息
2、下载安装Git工具
网址:https://git-scm.com/
3、安装Git
windows用户直接双击安装文件,使用默认安装选项即可。
Mac用户在命令行中直接输入 git命令,按照提示自动安装。
4、创建远程仓库
网址:https://gitee.com/projects/new
5、下载代码仓库
git clone
6、git使用
git clone 下载项目 后面输入项目url
git config 配置用户名和邮箱 (第一次使用配置)
git status 查看git文件的状态
git add 添加文件
git commit 提交到服务器 注意(-m “说明”)
git push 提交内容上传到服务器
git pull 从服务器拉代码
git log 提交日志
7、git配置
配置username,email:
git config --global user.name "John Doe"
8、常用命令
提交代码——git add -A (添加所有文件)
提交代码——
git commit -m “xxxxxxx” (提交代码的时候填写提交信息)
git push (将本地文件提交到服务器端)
从服务器同步代码——git pull
查看提交日志——git log
9、更多学习
https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000
http://www.ruanyifeng.com/blog/2015/12/git-workflow.html
需要资料视频,请联系下方微信领取
领取专属 10元无门槛券
私享最新 技术干货