git清理历史成为干净库

2018年9月15日 14:34

目的

想把以前的历史清理掉,作为一个干净库使用

方法

删掉本地.git,再删除远程库。下面是真删除,尝试前先备份。
#删除本地分支
git branch -D xxx

#删除远程分支(除了master其它分支都删掉)
git push  :远程分支

#删本地git
rm -rf .git

#新建库
git init
git add -A

#关联远程仓库
git remote add origin http://xxxxxx.git

#强制提交并覆盖远程master
git push -f origin master
 
精神病为什么治不好
百病之源
此生必看的科学实验-水知道答案

 

评论(116) 阅读(18177)

git-svn克隆太慢

2018年1月13日 22:01

git-svn默认是从第一个svn版本开始克隆,直到最后一个版本。

  • 默认克隆每个版本
git svn clone  svn_url
  • 仅克隆最新版本
git svn int  svn_url
git svn fetch -r HEAD         #HEAD代表最新版本
git svn fetch -r svn_number   #获取指定的svn版本
 
百病之源

 

评论(1) 阅读(4317)

同时管理git与svn两种仓库

2018年1月13日 21:31

如果开发环境使用git仓库,正式环境使用svn仓库。如何将管理有种仓库的代码呢?
幸好git与svn有一个桥接工具git-svn,可以将两种仓库衔接起来,用不同分支进行管理。
 
下面以将git代码,并入svn仓库为例
  • 首先从svn仓库克隆代码
git svn int http://ip/svn/demo/trunk  demo
git svn fetch -r HEAD
  • 添加git仓库地址
cd demo
git remote add git  http://ip/path/demo.git
  • 获取git仓库的分支
git fetch git master    #获取git仓库的master分支
git fetch git 1.0       #获取git仓库的1.0分支
git fetch git           #获取所有git分支
 
  • 此时本地git的分支情况
➜  demo git:(master) git branch -a
* master               #默认对应svn
  remotes/git-svn      #svn
  remotes/git/1.0      #远程git的1.0分支
  remotes/git/master   #远程git的master分支
  • 将git代码合并到svn分支
git merge  git-master
  • 更新并提交
git svn rebase
git svn dcommit
 
此生必看的科学实验-水知道答案
此生不能不认识的一个人
精神病为什么治不好
百病之源

 

Tags: git-svn
评论(6) 阅读(3966)

git status 显示乱码

2016年5月27日 05:22

  • 查看修改历史,出现下面"乱码"
修改:     "data/python\345\255\246\344\271\240\350\265\204\346\226\231.wiki"
  • 设置
git config --global core.quotepath false
显示正常
 

评论(35) 阅读(3748)

git免密码(https方式)

2015年2月14日 17:33

    使用git push提交时,每次都要输入密码,次数多了,感觉挺麻烦. 如果git以ssh协议通讯,免密码可以用ssh公钥设置免登录。如果git时以https方式访问呢,该怎么办?下面方式可以解决这个问题.

 
* 新建文件并保存密码
touch ~/.git-credentials
vim ~/.git-credentials
添加内容
https://{username}:{passwd}@github.com
 
* 添加git配置
 
执行下面命令添加配置
git config --global credential.helper store
 
* 查看~/.gitconfig文件变化
 
~/.gitconfig文件多出下面配置项
[credential]
    helper = store
 
再尝试git push不再需要输入密码.
 

评论(966) 阅读(47560)

git仓库与裸仓库

2014年11月14日 11:32

创建仓库

git init 本地仓库,包含.git目录和工作目录
[wyq@localhost blog.git]$ git init
重新初始化现存的 Git 版本库于 /home/wyq/workspace/blog.git/.git/
[wyq@localhost blog.git]$ ls -a
.  ..  .git

创建裸仓库

git init --bare 裸仓库,只有.git目录下的内容.
[wyq@localhost blog.git]$ git init --bare
初始化空的 Git 版本库于 /home/wyq/workspace/blog.git/
[wyq@localhost blog.git]$ ls -a
.   branches  description  hooks  objects
..  config    HEAD         info   refs
适合作为服务器仓库.

相互转换

git clone --bare 从仓库导出bare仓库
git clone 从bare仓库导出仓库
 
如果服务仓库以git init仓健,当用户向它提交代码时,会出现
Writing objects: 100% (3/3), 236 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
remote: error: refusing to update checked out branch: refs/heads/master
remote: error: By default, updating the current branch in a non-bare repository
remote: error: is denied, because it will make the index and work tree inconsistent
remote: error: with what you pushed, and will require 'git reset --hard' to match
remote: error: the work tree to HEAD.
remote: error: 
remote: error: You can set 'receive.denyCurrentBranch' configuration variable to
remote: error: 'ignore' or 'warn' in the remote repository to allow pushing into
remote: error: its current branch; however, this is not recommended unless you
remote: error: arranged to update its work tree to match what you pushed in some
remote: error: other way.
remote: error: 
remote: error: To squelch this message and still keep the default behaviour, set
remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.
To /home/wyq/workspace/blog.git
 ! [remote rejected] master -> master (branch is currently checked out)
解决办法是使用git clone --bare 克隆出.git内容作为服务器仓库.
 

Tags: git;bare
评论(157) 阅读(5596)