赞
踩
git pull
git fetch origin <remote_branch_name>:<local_branch_name>
git checkout <local_branch_name>
git config --global credential.helper store
然后执行一遍git pull
输入用户名密码,此时会自动保存,之后就不用再输入了
git checkout -b iss53
// 删除本地分支
git branch -d localBranchName
// 删除远程分支
git push origin --delete remoteBranchName
git push origin 新分支名:新分支名
// 暂存
git stash save “暂存运维新需求”
// 查看暂存
git stash list
// 使用暂存
git stash pop
// 撤销commit
git reset --soft HEAD^
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。