随笔分类 - Git
摘要:https://researchaholic.com/2015/02/02/remove-the-microsoft-gitprovider-from-visual-studio-2013/ vs自带的Git Provider非常不好用,每一次在Tools里面把Source Control调节成No
阅读全文
摘要:显示配置 git config --global -l 修改配置 git config --global --edit git status显示的文件名,支持中文 git config --global core.quotepath off 取消配置 https://stackoverflow.co
阅读全文
摘要:命令行中进行配置 http://stackoverflow.com/questions/783811/getting-git-to-work-with-a-proxy-server Command to use : change proxyuser to your proxy user change
阅读全文
摘要:情况描述: 公司的svn版本库,包含了多个项目,每个项目对应于1个文件夹 假设版本库名字为Main,其下的项目用 A项目,对应文件夹A B项目,对应文件夹B 通过git svn clone获取了svn的整个版本库Main 这样得到的是整个Main的提交历史 之后,在A上面开发了一段时间,并且git
阅读全文
摘要:https://lostechies.com/johnteague/2014/04/04/using-git-subtrees-to-split-a-repository/ We are in a position where we needed to create a new back-end后端
阅读全文
摘要:rebaseall: only ash or dash processes are allowed during rebasing Exit all Cygwin processes and stop all Cygwin services. Execute ash (or dash) from S
阅读全文
摘要:查看版本 $ ssh -VOpenSSH_7.6p1, OpenSSL 1.0.2n 7 Dec 2017 How to tell git which private key to use? In ~/.ssh/config, add: Host github.com HostName github
阅读全文
摘要:Generate patch through git diff http://stackoverflow.com/questions/1191282/how-to-see-the-changes-between-two-commits-without-commits-in-between you c
阅读全文
摘要:https://git-lfs.github.com/ 1.从这个网址下载git-lfs-windows-amd64-1.1.0.exe,运行这个安装包 2.然后打开git bash 输入git lfs install 3.根据需求来处理大文件 $ git lfs track "*.wav"Trac
阅读全文
摘要:http://stackoverflow.com/questions/18225126/how-to-use-git-for-unity-source-controlThe following is an excerpt frommy personal blog.Using Git with 3D ...
阅读全文
摘要:一共需要五步 第一步 $ git initInitialized empty Git repository in d:/SourceCode/GitHub/Git For Windows/Git/.git/ 第二步 $ git remote add origin https://github.com
阅读全文
摘要:http://segmentfault.com/q/1010000000257571想要把本地的分支推送到远端git push chucklu zhCN_v0.13.1 zhCN_v0.13.1正确的用法是git push chucklu zhCN_v0.13.1或者git push chucklu...
阅读全文
摘要:http://stackoverflow.com/questions/3156744/git-svn-rebase-checksum-mismatchThis solutionwas the only one that worked for me:See what was the revision ...
阅读全文
摘要:在进行代码整理的时候,遇到了冲突现在chucklu_master分支指向这个commitSHA-1: 88fa1ee9263402626d85b5a4362e1b620935953f* remove hotkey from config if action could not be found, f...
阅读全文
摘要:https://github.com/Epix37/Hearthstone-Deck-Tracker以上面版本库的master分支为例父节点1SHA-1: a21142968282ae49720cf30a0f18290b2ce74b3a* remove hotkey from config if a...
阅读全文
摘要:空格用'\ '表示,输入的时候,是不需要单引号的total 338drwxr-xr-x 9 Administ Administ 4096 Aug 24 23:53 HDTHelperdrwxr-xr-x 1 Administ Administ 4096 Oct 25 03...
阅读全文
摘要:https://github.com/Epix37/Hearthstone-Deck-Tracker/issues/1391I fetch the code from your repository,loop the following stepsstep1: create a branch on ...
阅读全文
摘要:https://github.com/chucklu/GitStudy 这链接里面的第一次提交[chucklu@localhost GitStudy]$ cat Makefile CFLAGS=-gCC=gccPROG=update-cache show-diff init-db write-tre...
阅读全文
摘要:先调用这个 export GIT_SSL_NO_VERIFY=true 之后再执行git clone
阅读全文
摘要:$ git clone https://github.com/git/git.git git3 将代码clone到指定的文件夹中 自己指定remote的名称 $ git clone -o git https://github.com/git/git.git git4 $ git remote -vg
阅读全文