随笔分类 - git使用
摘要:git status 查看代码状态 git add * 添加自己的修改 git commit 提交代码 格式: [WX-867]tlinux系列系统-bash插件管理发布适配 git pull --rebase 更新下服务器状态 git commit --amend 编辑提交文档 git push
阅读全文
摘要:1. git合并代码 git branch mynewbranh #创建分支 git checkout mynewbranh。 #切换到分支 vim test.file git add test.file git commit "提交test.file到新的分支" git checkout mast
阅读全文