github命令
配置文件
查看配置
git config --list
git config --list --global
新增配置
git config --global user.name "bufeetu"
git config --global user.email "bufeetu"
删除配置
git config --global --unset user.name
生成本地凭证
git config --global credential.helper store
回滚历史提交
git reset --hard d6d9407d19683
清理本地缓存
git rm -r --cached .
打标签
// 查看tag
$ git tag
//查看tag详细信息
git show “tagName”
// 切换到分支
$ git branch
// 打上新的标签
git tag -a v1.0.0 -m "这是备注"
删除标签
git tag -d v1.0.0
删除本地标签:git tag -d tagName
删除远程标签:git push origin :refs/tags/tagName
推送标签
$ git push origin v1.0.0
分支
使用流程:
打算开发某个功能,又怕影响现有代码.
clone项目,创建一个新分支,在分支开发,测试没问题了就合并.合并后再提交
重要的功能且很完善,就打标签.
克隆分支
git clone -b home https://github.com/bufeetu/quantpolicy.git
查看分支
git branch
创建分支
git branch dev
切换分支
git checkout dev/master
合并分支
git merge dev //首先在主分支,把其他分支的合并过来
删除分支
git branch -d dev
新建远程分支并推送(git push到不存在的远程分支时也会提示)
git push --set-upstream origin dev
正常推送分支
git push
增加clone速度
本地梯子,然后配置本地
# 以下使用socks5代理
git config --global http.proxy socks5://127.0.0.1:10808
git config --global https.proxy socks5://127.0.0.1:10808
# 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
#查看配置
cat ~/.gitconfig
# iguge加油站
chrome-extension://ncldcbhpeplkfijdhnoepdgdnmjkckij/page.html?/client/download
``
忽略文件
# 表示此为注释,将被Git忽略
*.a 表示忽略所有 .a 结尾的文件
!lib.a 表示但lib.a除外
/TODO 表示仅仅忽略项目根目录下的 TODO 文件,不包括 subdir/TODO
build/ 表示忽略 build/目录下的所有文件,过滤整个build文件夹;
doc/*.txt 表示会忽略doc/notes.txt但不包括 doc/server/arch.txt
bin/: 表示忽略当前路径下的bin文件夹,该文件夹下的所有内容都会被忽略,不忽略 bin 文件
/bin: 表示忽略根目录下的bin文件
/*.c: 表示忽略cat.c,不忽略 build/cat.c
debug/*.obj: 表示忽略debug/io.obj,不忽略 debug/common/io.obj和tools/debug/io.obj
**/foo: 表示忽略/foo,a/foo,a/b/foo等
a/**/b: 表示忽略a/b, a/x/b,a/x/y/b等
!/bin/run.sh 表示不忽略bin目录下的run.sh文件
*.log: 表示忽略所有 .log 文件
config.php: 表示忽略当前路径的 config.php 文件
/mtk/ 表示过滤整个文件夹
*.zip 表示过滤所有.zip文件
/mtk/do.c 表示过滤某个具体文件
清除提交记录
1.切换到新的分支
git checkout --orphan latest_branch
2.缓存所有文件(除了.gitignore中声明排除的)
git add -A
3.提交跟踪过的文件(Commit the changes)
git commit -am "commit message"
4.删除master分支(Delete the branch)
git branch -D master
5.重命名当前分支为master(Rename the current branch to master)
git branch -m master
6.提交到远程master分支 (Finally, force update your repository)
git push -f origin master
删除远程文件并且本地忽略
第一步,添加.gitignore文件,在里面添加内容:
./idea
1
如果你工程代码中存在.gitignore文件,且含有上面的内容。但是却没有达到忽略效果的原因是:.gitignore文件只会ignore没有被staged的文件。也就是说,之所以.idea能push到remote远程仓库,是因为你已经执行了git add命令。
git中删除.idea
第二步,执行命令git rm --cached -r .idea,该命令的作用是删除暂存区或分支上的文件,停止追踪指定文件,但该文件会保留在工作区。这样相当于stage中没有.idea文件。
追踪.gitignore文件并提交
第三步,执行命令git add .以及git commit -m "删除.idea"。
push变化内容到remote
第四步,执行命令git push