Git操作流程与命令使用指南
第一次拉取代码:
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'
用户评论