美文网首页GitHub
Github常用命令

Github常用命令

作者: 大狗熊熊熊熊熊 | 来源:发表于2021-03-25 17:12 被阅读0次
1.git clone [远程仓库地址] 【克隆远程仓库到当前文件夹】
1.git status【查看当前状态】
2.git init【创建本地仓库】
3.git add [文件]【向本地仓库添加文件】
4.git commit -m " " 【将仓库文件提交到暂存区准备上传 -m添加描述信息】
5.git branch 【在本地新建分支】
6.git chekout 【切换分支】
7.git push origin [本地分支]:[远程分支] 【向github推送】
8.git remote add origin [github主机地址] 【指定github远程主机】
9.git remote rm [仓库名] 【删除远程仓库】
10.git remote rename [仓库名] [新仓库名] 【修改远程仓库名称】
11.git remote show [github仓库地址] 【显示远程仓库信息】

相关文章

  • Github

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

  • Git快捷键

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

  • git命令(1)

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

  • Flutter 混合(1)

    https://github.com/fengxing1234/Flutter 常用命令 创建moduleflut...

  • Git操作记录

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

  • git cmd

    GitHub Commands git 常用命令 注册 SSH key 以便git bash 可以push req...

  • github使用2018-01-04

    一、学习网站 github官网使用说明github常用命令 二、笔记 1)一次创建过程 git statuslsc...

  • Git 学习之路

    Git 常用命令: 从远程仓库获取项目到本地 $ git remote add origingit@github....

  • git和github的使用

    git和github的区别: 1.git是版本控制系统;2.github是为用户提供管理服务的网站; 常用命令: ...

  • Git常用命令集合

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

网友评论

    本文标题:Github常用命令

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