美文网首页
git使用命令

git使用命令

作者: _花 | 来源:发表于2017-12-22 13:29 被阅读0次

    1.如何将远程仓库克隆到本地

    git  clone  git@*******:hisgit/his-front.git
    

    注意如果此时你的项目是空的,要先建个页面push到远程仓库;否则没办法进行下面操作
    2.产看远程分支

     git branch -r
    
    image.png

    3.查看所有分支

    git branch -a
    
    image.png

    4.查看本地分支

    git branch
    

    5.切换分支

    git checkout ***
    

    6.创建远程分支

    1.创建本地分支
     git branch develope
    2.然后将本地分支推送到远程
     git push origin develope:develope
    
    注意:如果远程已有分支,要在本地创建其对应的本地分支
    git checkout --track 或者 git checkout -b如:
    git checkout --track  origin/dev-zhengqigit ,
    git  checkout -b dev-zhengqi  origin/dev-zhengqi
    建立分支后,默认会进到新建的分支里,
    

    7.删除本地分支

     git branch -d xxxxx
    

    8.删除远程分支

    git branch -r -d origin/branch-name  
    git push origin :branch-name 
    git push origin --delete tag v0.7
    

    9.从远程拉到本地

    git pull origin master
    

    10.从本地推送到远程

    git push origin develope
    

    11.查看历史日志

    git log
    

    12.已经add的文件,在gitignore中无效,删除重新add

    git rm -r --cached .
    git add .
    git commit -m 'update .gitignore'
    

    13.使用git在本地创建一个项目的过程

    $ makdir ~/hello-world    //创建一个项目hello-world
    $ cd ~/hello-world       //打开这个项目
    $ git init             //初始化
    $ touch README
    $ git add README        //更新README文件
    $ git commit -m ‘first commit’     //提交更新,并注释信息“first commit”
    $ git remote add origin git@github.com:defnngj/hello-world.git     //连接远程github项目
    $ git push -u origin master     //将本地项目更新到github项目上去
    

    如果还想深究,可以去查阮一峰日志:http://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html

    相关文章

      网友评论

          本文标题:git使用命令

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