git 修改分支名称
# git branch -m old new # git push origin new
git 检出某个分支的某个文件到当前分支
git checkout current_branch git checkout feature/v1.2 — order.go// 将 featu…
git 查看某个分支是从哪个分支检出的
git reflog show
git 存储用户名密码
当你登陆过一次之后,执行如下命令即可,保存用户名密码。 git config –global credential.helper store &…
远端删除的分支 git branch -a 仍然能看见?
远程仓库里已经删除的分支,但是在本地git branch -a 的时候还是有? git remote show origin 获取远端分支信息,你可以看到和本地…
git 删除远程分支
删除远程分支的两种方法: git push origin –delete branch-name git push origin :branch-name 删…
git commit 撤销
git log git reset –hard <commit_id>
避免每次git pull 都输入密码
有的时候,git服务器要求密码验证,为了避免每次git pull 都输入密码 git config –global credential.helper sto…
warning: push.default is unset; its implicit value is changing in
问题:warning: push.default is unset; its implicit value is changing in 解决:git conf…
git 提交怎么忽略已经被追踪的文件
git 提交怎么忽略已经被追踪的文件 项目开发的过程中,经常会在项目内创建自己的文件,但是又不想提交到线上仓库,怎么办呢? git update-index &…
error: Untracked working tree file ‘public/images/icon.gif’ would be overwritten by merge.
error: Untracked working tree file ‘public/images/icon.gif’ would be…