git 简单操作

1初始化 

git init

 

如果已经存在  Reinitialized existing Git repository in /home/firefly/firefly/duchao/.git/

删除命令:

ls -a

// 移除 .git

 rm -rf .git

 ls -a

// 重新初始化

git init

添加文件:

git add README.md  //添加单个文件
git add . //添加工程所有文件

将缓存中的文件Commit到git库: git commit -m "first commit"

将本地的库链接到远 ;   git remote add origin http://service.xinda-ai.com:3001/duchao/rknn_example_dc.git

出现错误:

fatal: remote origin already exists.

此时,我们可以先 git remote -v 查看远程库信息:

git 简单操作

 

 解决办法如下:

1、先输入$ git remote rm origin(删除关联的origin的远程库)

2、再输入$ git remote add origin git@github.com:(github名)/(git项目名).git 就不会报错了!

3、如果输入$ git remote rm origin 还是报错的话,error: Could not remove config section 'remote.origin'. 我们需要修改gitconfig文件的内容

原文链接:https://blog.csdn.net/qq_40428678/article/details/84074207

 

 

git push -u origin master

 

 

 

 

 

 

 

 

 

上一篇:git remote 删除已添加的远程仓库地址


下一篇:Git 笔记