Github 在mac下的连接和上传

以前用过github,好久没用都忘了,今天复习了一下

1. 检查是否已经ssh连接好github    在终端上打 ssh -T [email protected] ,如果提示no access等一堆提示, 表明以前已经添加好了ssh public key

2. 创建 远程仓库,直接在github 里面new repository

3. 在终端cd 到要 推送的项目的文件见,然后敲 git init

4.然后要add 并且commit 到缓存区,二步可以变成一步直接敲 git commit -a -m “Message you want to say”,如果没有敲就push的话会出现 no src error

5.本地仓库连接远程仓库,我用的https 连接,所以要输入用户名和密码,cd 到要push的文件夹然后敲git remote add 远程仓库的名字 https://XXXXX.git ,然后会提示你输入名字和密码

6. push到远程仓库, git push -u 仓库名字 master

7.查看已经存在的远程仓库名字, git remote -v

8.重命名仓库名字, git remote rename origin destination,  把origin 命名为 destination

9.删除仓库, git remote rm url 或 仓库名字


你可能感兴趣的:(Git)