1 add file path in .gitignore file 2 in console -> git update-index --assume-unchanged app/etc/local.xml 3 you will found in souce tree have not this file exit
Category: GIT
git 教程
http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000 2015-06-08 resume 1. git 是分布式版本管理系统, 每台电脑上都有自己的版本库,svn ,cvs 是集中式版本管理,必须有服务器支持 2.git 常用命令: git add readme.txt ->>添加一个文件到版本库 git commit -m "append GPL" 提交 添加文件到Git仓库,分两步: 第一步,使用命令git add <file>,注意,可反复多次使用,添加多个文件; 第二步,使用命令git commit,完成。
create git in siteground host
1. excuter ssh-keygen -t dsa create ssh public key in siteground by ssh 2 copier .ssh/is_dsa.pub public key à bitbucket 3. ssh -T git@bitbucket.org tester login bitbucket 4.excuter git commande https://confluence.atlassian.com/display/BITBUCKET/Set+up+SSH+for+Git https://www.siteground.com/tutorials/siteground-git/github-siteground.htm
Git操作:强制删除提交到远程版本库的数据与版本记录
git reset --hard HEAD~2 # 取消当前版本之前的两次提交 git push origin HEAD --force # 强制提交到远程版本库,从而删除之前的两次提交数据