美文网首页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常用命令

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