如果以之前没有用过 git,当你第一天入职怎么开始干活呢?
安装 git
这里就不详细阐述了
Git安装
配置用户名有邮箱
$ git config user.name yourname
$ git config user.email youremail
// 全局配置
$ git config --global user.name yourname
$ git config --global user.email youremail
clone 远程仓库项
$ git clone <url>
创建分支
// 创建分支
$ git branch <name>
// 进入到新建分支
$ git checkout <name>
// 创建并进入的指令
$ git checkout -b <name>
提交
// 提交缓存区,. 是提交所有,你可以选择提交指定文件
$ git add .
// 确认提交
$ git commit -m "提交说明"
// 从当前分支切换到主分支
$ git checkout master
// 拉取远程仓库当前版本到主分支
$ git pull
// 与你的分支合并
$ git merge --no-ff -m "合并说明" <name>
// 提交远程仓库
$ git push origin master
over 学会了吗?
网友评论