1、检出 svn co http://路径(目录或文件的全路径) [本地目录全路径] --username 用户名 --password 密码svn co svn://路径(目录或文件的全路径) [本地目录全路径] --username 用户名 --password 密码 svn checkout ...
分类:
其他好文 时间:
2017-05-19 19:37:00
阅读次数:
294
Git branch 分支 查看当前有哪些branch 新建一个branch xm2.x 切换到一个branch 新建并且切换到该branch,例: xm2.x 再次查看 添加一个文件到你的repo 添加所有的文件 git add . commit一个文件 commit到本地 查看几次commit的 ...
分类:
其他好文 时间:
2017-05-19 18:41:46
阅读次数:
193
2017年5月5日 星期五 --出埃及记 Exodus 25:33Three cups shaped like almond flowers with buds and blossoms are to be on one branch, three on the next branch, and t ...
分类:
其他好文 时间:
2017-05-18 17:27:27
阅读次数:
115
版本库状态: git status git checkout .(文件路径) git diff git log 代码版本切换: git reset --hard 某次提交 git pull (--rebase) 代码提交: git add git commit git push 分支处理: git ...
分类:
其他好文 时间:
2017-05-17 11:48:53
阅读次数:
124
作用:取回远程主机某个分支的更新,再与本地的指定分支合并 格式:git pull <远程主机名> <远程分支名>:<本地分支名> 1. 如果与当前分支合并,则可省略本地分支名 git pull <远程主机名> <远程分支名> 相当于:git fetch <远程主机名> <远程分支名> git mer ...
分类:
其他好文 时间:
2017-05-17 00:42:37
阅读次数:
222
git branch 查看本地分支 git branch -a 查看本地 本地分支可直接切换:git checkout name 进入正题: 1、文件夹备份 2、git config core.ignorecase false 设置大小写敏感 3、cd... 进入到文件夹目录下,我的文件夹名是Con ...
分类:
其他好文 时间:
2017-05-12 13:22:51
阅读次数:
266
Description The branch of mathematics called number theory is about properties of numbers. One of the areas that has captured the interest of number t ...
分类:
其他好文 时间:
2017-05-12 09:35:19
阅读次数:
207
核心流程: 从远端中心repo那里Git clone 到本地,再在本地开发(add, commit), 通常会利用branch管理,如果觉得code 没问题了,就push到远端的中心repo上。这里中心的repo 就是 bitbucket上的repo。 git 之后 不需要 减号- 1. git c ...
分类:
其他好文 时间:
2017-05-12 00:19:33
阅读次数:
181
初始化仓库 创建分支并切换 $ git checkout -b dev//或者分两步$ git branch dev$ git checkout dev 查看当前分支状态 $ git branch 对工作区的修改和提交 把dev合并到master上 $ git checkout master//fa... ...
分类:
其他好文 时间:
2017-05-11 18:29:33
阅读次数:
147
git pull把所有相关联的分支(本地+远程)全部更新了git pull会把本地的修改覆盖,如果本地没有提交的话,如果提交了commit, 那就不能覆盖了git pull remote-name branch-name就是指更新这个分支到本地当前分支 Your branch is ahead of ...
分类:
其他好文 时间:
2017-05-11 11:37:26
阅读次数:
111