1、本身路径代码都存在在服务器端
创建分支 branch_name
<code>
git checkout -b branch_name
git add .
git commit
git push origin branch_name
</code>
2、作为分支提交一个新的工程到已存在的代码库
已知服务端代码库 /andoird-testapp ,以公司内部为例
创建一个新项目作为该代码库的分支推送;
<code>
cd ./project
git init
git add .
git commit
git remote add origin ssh://xxx@xxx.xxx.com:[port]/andoird-testapp
scp -p -P [port] xxx@xxx.xxx.com:hooks/commit-msg .git/hooks/
git checkout -b branch_name
git push origin branch_name
</code>
其中[port]需要替换为对应端口号,比如80;
xxx替换为相关服务名称与用户名称