美文网首页iOS开发
Github常用的命令

Github常用的命令

作者: 不务正业的小肖 | 来源:发表于2018-06-21 22:14 被阅读0次

下载 git clone + 地址

切换分支:git checkout name

撤销修改:git checkout – file

删除文件:git rm file

查看状态:git status

添加记录:git add file 或 git add .

添加描述:git commit -m “miao shu nei rong”

同步数据:git pull

提交数据:git push origin name

分支操作

查看分支:git branch

创建分支:git branch name

切换分支:git checkout name

创建+切换分支:git checkout -b name

合并某分支到当前分支:git merge name

删除分支:git branch -d name

删除远程分支:git push origin :name

相关文章

  • Github常用的命令:

    切换分支:git checkout name 撤销修改:git checkout -- file 删除文件:git...

  • Github常用的命令

    下载 git clone + 地址 切换分支:git checkout name 撤销修改:git checkou...

  • Git操作记录

    Git的使用常用命令GitHub远程仓库 Git的使用 常用命令 创建仓库 添加命令 提交命令 查看状态 查看修改...

  • Git 命 令 大 全

    Git常用操作命令: 1) 远程仓库相关命令 检出仓库:$ git clone git://github[http...

  • Github

    Github使用教程一Github使用教程二Github使用教程三 Git常用命令Git之使用GitHub搭建远程仓库

  • git命令(1)

    Git常用命令stackoverflow:全球最大的程序员问答网站github:www.github.comgit...

  • Git快捷键

    转载自https://github.com/mzlogin/mzlogin.github.io 常用命令 Q&A ...

  • git 常用命令

    t常用操作命令收集: 1) 远程仓库相关命令 检出仓库:$gitclonegit://github.com/jqu...

  • Git常用操作命令收集:

    Git常用操作命令收集: 1) 远程仓库相关命令 检出仓库:$gitclonegit://github.com/j...

  • git命令大全

    Git常用操作命令: 远程仓库相关命令检出仓库:$ git clone git://github.com/jque...

网友评论

    本文标题:Github常用的命令

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