说明 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中的东西上传到线上
时间: 2024-10-11 00:55:13