develop log–simple git log 简单使用日志
1.init environment -- 初始化 1.1 init -- 初始化 git init 1.2 clone -- 克隆 git clone ssh://pkrss@pkrss.my.phpcloud.com/gitprojects/container-root.git 2.add git server 2.1add remote depositary -- 添加远程仓库 git remote add phpcloud ssh://pkrss@pkrss.my.phpcloud.com/gitprojects/container-root.git git remote add cdsn git@code.csdn.net:pkexa/pkexa.git 2.2 show remote depositary list -- 查看已添加的远程列表 git remote 2.get code 2.1 pull code -- 拉代码 git pull phpcloud master this will get ssh://pkrss@pkrss.my.phpcloud.com/gitprojects/container-root.git depositary master branch.and local depositary name is origin. -- 它拉取ssh://pkrss@pkrss.my.phpcloud.com/gitprojects/container-root.git 仓库 master 分支.本地仓库名为origin. 2.2 commit to git local cache -- 将修改的代码提交到本地缓存 git commit –am "change some code log" 2.3 push local cache to server -- 将本地的缓冲提交到服务器 git push phpcloud master:master -- or 或者 git push phpcloud master -- or 或者 git push phpcloud 3.branch -- 分支 3.1 local branch -- 本地 3.1.1 create branch -- 创建分支 create...