1.查看所有分支
git branch -a
2.切换到xxx分支
git checkout xxx
3.提交代码到远程库:
git init #初始化
git status # 查看本地代码状态,可以不写这步
git add . # 添加修改代码到缓存
git commit -m "一些信息" # 提交
git push 仓库地址 # push进去了!
3.如何在现有的仓库中提交代码:
1.git clone https://github.com/zzyo96/xxx.git
2.新建一个文件如xxx.js
3.git add xxx.js
4.git commit - m'这是提交信息'
5.git push
网友评论