当前位置:   article > 正文

git-常用命令

git-常用命令
拉取代码

git pull

拉取远程分支到本地

git fetch origin <remote_branch_name>:<local_branch_name>
git checkout <local_branch_name>

git pull 每次都需要输入用户名密码

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

// 撤销commit
git reset --soft HEAD^

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/359768
推荐阅读
相关标签
  

闽ICP备14008679号