1. 首页
  2. 考试认证
  3. 其它
  4. Git操作流程与命令使用指南

Git操作流程与命令使用指南

上传者: 2024-11-07 18:38:43上传 ZIP文件 510.09KB 热度 2次

第一次拉取代码:

git clone git@github.com:HookFeed/hookfeed.github.io.git

进入项目目录:

cd hookfeed.github.io

重命名远程仓库:

git remote rename origin github

安装所需的依赖:

bundle install --path vendor

更新代码:

git pull

处理新功能/错误/重构:

确保您当前在主分支上:

git feature [name]

查看当前分支状态:

git feature [name]

推送到GitHub:

git push -u github feature/[name]

提交工作:

git add -A

git commit -m 'description of change'

用户评论