git之create local reposition(创建本地仓库)

Posted code.world

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git之create local reposition(创建本地仓库)相关的知识,希望对你有一定的参考价值。

1、创建名为git-reposition的仓库

    mkdir home/sunjf/git-reposition

  注:home/sunjf可以指定为你想要的路径下面

2、初始化仓库

  cd ~/git-reposition    //进入仓库目录

  git init   //初始化仓库

  此时,在仓库中会产生.git文件,因为为隐藏文件,需要通过ls -ah查看

  

3、在仓库中建readme.txt文件,并添加内容

  touch readme.txt   //创建readme.txt文本

  sudo vim readme.txt  //编辑文本内容,可随便输入信息,这一步可选,我输如的内容为“my git-reposition test!”

4、检查仓库状态

  git status   //查看仓库状态,提示有未跟踪的文件

    

5、添加跟踪

  git add readme.txt  //为readme.txt添加跟踪

  此时,执行git status指令,提示readme.txt为新文件

   

6、提交readme.txt到本地仓库

  git commit -m "add readme.txt"  //-m为添加说明命令 

  此时,执行git status指令,如下

  

7、提交到远程仓库(我这里为github上新建的test2,可参考git之remote repository create(远程仓库创建)

  ssh-keygen -t rsa -C "sunjf@biomarker.com.cn"  //生成git公钥

  生成后将其添加到github

  git remote add origin https://github.com/shaoyesun/test2.git  //本地仓库与远程仓库关联

  git push -u origin master //本地仓库内容添加到远程仓库

   

 此时,在github中可以看到

  

  

 

以上是关于git之create local reposition(创建本地仓库)的主要内容,如果未能解决你的问题,请参考以下文章

git使用手册

git之remote repository create(远程仓库创建)

Git.之.最小化配置

git pull的时候发生冲突的解决方法之“error Your local changes to the following files would be overwritten by merge”

git之idea分支操作

浅谈GIT之通讯协议