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

git使用问题

时间:2014-08-29 13:16:58      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:style   http   os   使用   strong   文件   2014   问题   sp   

一、使用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项目上去


如果输入$ git remote add origin git@github.com:gemlee(github帐号名)/gitdemo(项目名).git 

    提示出错信息:fatal: remote origin already exists.

    解决办法如下:

    1、先输入$ git remote rm origin

    2、再输入$ git remote add origin git@github.com:djqiang/gitdemo.git 就不会报错了!

bubuko.com,布布扣

git使用问题

标签:style   http   os   使用   strong   文件   2014   问题   sp   

原文地址:http://my.oschina.net/lee2013/blog/307877

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