美文网首页
git 命令

git 命令

作者: Amber貝貝 | 来源:发表于2019-01-31 17:50 被阅读0次

    1.克隆   git clone  +地址
    2. cd   克隆下的文件
    3.注意:安装依赖  git init 
    4. 运行   
    5.创建分支   git branch amber-sls(分支名称)
    6.切换分支   git checkout amber-sls
    7.拉取master   git  pull origin master
    8.add   git add .  (add所有的修改)      git add  具体的修改内容
    9.git commit -m "对修改信息的概括"
    10.git push origin  amber-sls(分支名称)

    补充:git status 查看状态
               git branch  查看所有分支 
               git checkout   切换分支 

    相关文章

      网友评论

          本文标题:git 命令

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