美文网首页
git 常用命令

git 常用命令

作者: 风化雪月 | 来源:发表于2022-09-20 13:34 被阅读0次

查看所有分支 git branch -a

提交 步骤

1. git add .(空格点别忘了)

2.git commit -m '本次提交说明'

3.git push origin <你要提交的分支名>

拉取

git pull origin <你要拉取的分支名>

查看历史提交

git log

创建并切换到新分支

1. git checkout <要新建的分支名称> -b

2. git push origin <要新建的分支名称> (将新分支提交)

推送到 其他分支

git push origin <你当前分支名>:<你要推送到的分支名>

设置远程跟踪

git branch --set-upstream-to=origin/远程分支名 本地分支名

//或

git branch --set-upstream 远程分支名

//或

git branch -u 远程分支名

忽略文件

.gitignore

相关文章

网友评论

      本文标题:git 常用命令

      本文链接:https://www.haomeiwen.com/subject/dvwbortx.html