赞
踩
1、在git bash命令行,切换到需要上传分支的的根目录,如 c/users/cnhqf/TownshipWDM
#切换并创建分支
git checkout -b TownshipWDMlog #(分支名)
2、加入文件
#分支增加单个文件logs
git add logs
#把该目录下面的文件全部加入分支
git add .
3、 commit
#给分支标注注析,说明分支的作用
git commit -m "增加日志"
4、push推送至服务器
git push origin TownshipWDMlog #(分支名)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。