Mac 本地代码上传GitHub

运行 git Bash 客户端,输入如下代码:

$ cd ~/.ssh
$ ls
这两个命令就是检查是否已经存在 id_rsa.pub 或 id_dsa.pub 文件,如果文件已经存在,那么你可以跳过步骤2,直接进入步骤3。

2、创建一个 SSH key 

$ ssh-keygen -t rsa -C  " [email protected] "(注册github时用的邮箱)


  
    $ 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 [email protected]:defnngj/hello-world.git      // 连接远程github项目 
    $ git push -u origin master      // 将本地项目更新到github项目上去


GitHub ssh key

http://blog.csdn.net/phunxm/article/details/45083335

GitHub上传代码

http://blog.csdn.net/leikezhu1981/article/details/47664215




你可能感兴趣的:(Mac 本地代码上传GitHub)