标签:查看 manage abort 系统 evel 使用 keychain git update
du -sh
git push origin master --force
使用 git remote prune origin
可以将其从本地版本库中去除。
git branch -m devel develop
git reset --hard commit_id
git reset commit_id
git clone https://github.com/SuperAL/splice.git --depth=1
--depth=1
,代表只拉取最新一次提交。git remote show origin
git remote prune origin
git fetch -p
git branch -r | awk '{print $1}' | egrep -v -f /dev/fd/0 <(git branch -vv | grep origin) | awk '{print $1}' | xargs git branch -d
git fsck --lost-found
git merge --abort
git remote prune origin
git fetch -p
git push origin --delete <BranchName>
windows系统执行命令: git credential-manager uninstall
mac系统命令为: git credential-osxkeychain uninstall
git config --global credential.helper store
git config --global http.proxy 127.0.0.1:51441 # 设置代理
git config --local http.proxy 127.0.0.1:51441 # 设置本仓库代理
git config --global --unset http.proxy # 删除全局代理
git config --local --unset http.proxy # 删除本地仓库代理
git for-each-ref --sort=committerdate refs/heads/ --format='%(committerdate:short) %(refname:short)'
git filter-branch --force --index-filter 'git rm --cached --ignore-unmatch *.class' --prune-empty --tag-name-filter cat HEAD -- --all
git update-index --assume-unchanged ./config/index.js
git merge master --allow-unrelated-histories
标签:查看 manage abort 系统 evel 使用 keychain git update
原文地址:https://www.cnblogs.com/daowangzhizhu-pt/p/12118532.html