【git】将本地分支提交到远程仓库

找到要推送的文件夹,右键

Git Bash Here

git init
git add .
git commit -m "message"
git branch '分支名'
git checkout '分支名'
git branch
git remote add origin 地址 
git push origin 分支名

 

你可能感兴趣的:(git,git)