美文网首页
终端命令

终端命令

作者: 张家杰仔 | 来源:发表于2017-04-06 10:40 被阅读9次
    cd  :打开
    ls :查看
    mkdir: 创建文件夹
    clear: 清屏
    
    
    1.打开桌面
    cd Desktop/  clear(清屏)
    
    2.显示所有内容
    ls
    
    3.创建文件夹
    mkdir
    
    4.打开创建的文件夹
    cd …
    
    5.把仓库里面的文件克隆到本地文件夹
    git clone …(https)
    
    6.输入用户名  密码
    
    
    7.查看git状态
    git status 
    
    8.添加本地新增的改变文件
    git add (工程名)/
    
    9.本地确认将要push 的文件,并做好标注
    git commit -m "init project"
    
    
    
    10.推送本地已经commit的变动
    git push
    
    (On branch master
    Your branch is ahead of 'origin/master' by 1 commit.
      (use "git push" to publish your local commits)
    nothing to commit, working directory clean)没有需要确认的项了
    
    
    11.git push
    
    
    

    相关文章

      网友评论

          本文标题:终端命令

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