git如何上传项目到分支?
一、上传一个独立的分支(比如代码是从工程中直接DOWNLOAD ZIP文件如BowlingScore-test.zip,该文件与原MASTER分支是独立的)
1、Git init (在本地工程目录下),生成.git 文件夹
Git init
2、上传修改的文件
git add *
(*可替换成具体要上传的文件名,*表示提交所有有变化的文件) 3、添加上传文件的描述
git commit -m "test"
(”test“为分支名)
(创建分支)
git branch test
(切换分支)
git checkout test
与远程分支相关联
git remote add origin https://github.com/yangxiaoyan20/BowlingScore.git
1 (”BowlingScore“ 为工程名)
(将分支上传)
git push origin test
注意:提示 “请输入github用户名和密码“
二、上传一个与MASTER相关的分支(该分支是从MASTER中git clone 得到,相关信息在 .git 文件中)
修改后源码后,在进行如下操作
git add .
git commit -m "test" (”test“为分支名)
git branch test(创建分支)
git checkout test (切换分支)
git push origin test:test
相关推荐
敏敏张 2020-11-11
SCNUHB 2020-11-10
小木兮子 2020-11-11
wwwsurfphpseocom 2020-10-28
WasteLand 2020-10-18
Cocolada 2020-11-12
杜鲁门 2020-11-05
shirleypaddy 2020-10-19
qingmumu 2020-10-19
Testingba工作室 2020-09-15
周公周金桥 2020-09-13
专注前端开发 2020-08-16
emagtestage 2020-08-16
heniancheng 2020-08-15
hanjinixng00 2020-08-12
小方哥哥 2020-08-09
83327712 2020-07-30
卖小孩的咖啡 2020-07-21
wqiaofujiang 2020-07-05