github上上传本地仓库并新建分支和删除分支

2017-08-26 00:02:03 -0400
cd到仓库目录:cd xxxxxx
把这个目录变成Git可以管理的仓库:git init
添加全部文件到本地仓库:git add -A
把文件提交到仓库:git commit -m "first commit"
在本地新建一个分支: git branch newBranch
切换到你的新分支: git checkout newBranch
关联远程仓库:git remote add origin https://github.com/tackeylsj/sudamod_device_wingtech_wt88047.git
将新分支发布在github上: git push origin newBranch
在本地删除一个分支: git branch -d newBranch
删除远程分支:git push origin :branch
«Newer      Older»
Comment:
Name:

Back to home

Subscribe | Register | Login | N