首页 > 代码库 > git使用手册

git使用手册

技术分享

说明  git pull类似 svn update,你每次提交之前一定要做一次 git pull 确保代码是最新的!

》》首先做git clone 形成本地repository;

》》然后做checkout形成分支

列出所有分支  $ git branch –r

切换到新分支:git checkout branchName

》》修改后做 git commit到本地repository

》》然后做 git pull 类似 svn update,如果有冲突就解决

》》然后 git push 将repository中的东西上传到线上

git使用手册