码迷,mamicode.com
首页 > 其他好文 > 详细

Git 操作

时间:2018-11-11 20:14:36      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:http   comm   ini   style   打开   git push   first   size   初始   

git常用命令

http://www.cnblogs.com/chenwolong/p/GIT.html

 

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

    $ makdir ~/hello-world    //创建一个项目hello-world
    $ cd ~/hello-world       //打开这个项目

#或者进入一个文件夹 然后初始化它
    $ git init             //初始化
    $ git add README        //更新README文件

#或者 git add . #更新所有
    $ 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项目上去

 

Git 操作

标签:http   comm   ini   style   打开   git push   first   size   初始   

原文地址:https://www.cnblogs.com/lonelyshy/p/9943018.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!