git创建仓库c及gitbash代码管理

     内容过多已上传资源,github代码管理的流程及常见问题解决: github创建仓库及gitbash代码管理

        github是作为成程序员必须知道且普遍会用到的代码管理的神奇网站,存在代码存储,更迭等的强大功能;

        该文章详细说明了从github的仓库创建到使用gitbash上传,更新代码的流程;及搭建环境过程中常遇到的问题的解决方案,第一次搭建常遇到的问题:

使用git clone xxx 指令下载仓库到本地是可能遇到如下问题:

fatal: unable to access 'https://gxxx.git/': Failed to connect to github.com port 443 after 21051 ms: Couldn't connect to server

在上传代码或者更新代码时可能会遇到如下问题:

1. 上传代码后github仓库没有上传过的代码

2. 更新代码时遇到如下问题:

[master (root-commit) 8cb016f] first
 1 file changed, 1 insertion(+)
 create mode 160000 rtspServer

3. 上传linux代码过程中可能遇到如下问题: 

warning: in the working copy of ‘...‘, LF will be replaced by CRLF the next time Git touche

以上问题都给出了明确的解答;

该文章内容:

1. 创建git仓库

2. 代码管理

        2.1 gitbash下载

        2.2 配置ssh公钥

        2.3 导入github仓库

        2.4 代码管理

                2.4.1 问题

                2.4.2 git指令

你可能感兴趣的:(git,git,linux)