github上传-远程仓库管理

Posted alan-alan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了github上传-远程仓库管理相关的知识,希望对你有一定的参考价值。

https://github.com/


1.在Windows上安装Git
2.你的名字和Email地址

 

1.giithup删除远程库
2.giithup远程库关联本地
3.giithup创建与合并分支


3.本地版本库

  • git init命令把这个目录变成Git可以管理的仓库
  • F:\MyRepository
  • 工作区,暂存区

4.op
op1添加+提交

  • git status
  • git add readme.txt
  • git commit -m "wrote a readme file"
  • git push -f origin master

查看:

http://htmlpreview.github.io/?
https://github.com/lanczh/works/blob/master/web/index.html

op2运行git status命令看看结果

  • git status
  • git rm


远程仓库
我们根据GitHub的提示,在本地的learngit仓库下运行命令
1.方法一
https://github.com/lanczh/works.git
本地版本库
妈妈再也不用担心我的硬盘了


CodeReposition
F:\CodeReposition


ssh -T [email protected]
git clone https://github.com/lanczh/works.git

2.方法二
将本地的已有项目关联到github上的新的项目上
F:\CodeReposition下执行
git remote add origin https://github.com/lanczh/works.git

我们创建dev分支,然后切换到dev分支
git checkout -b branch0822 //相当于以下两条命令:git branch dev/ git checkout dev


然后,用git branch 命令查看当前分支:

  • git branch
  • git checkout master
  • git merge dev
  • git branch -d dev


git 冲突

  • git status也可以告诉我们冲突的文件
  • Git用<<<<<<<,=======,>>>>>>>标记出不同分支的内容,我们修改如下后保存:
  • 用git log --graph命令可以看到分支合并图
  • git log --graph --pretty=oneline --abbrev-commit

https://github.com/lanczh/works/blob/master/pos/index.html



















以上是关于github上传-远程仓库管理的主要内容,如果未能解决你的问题,请参考以下文章

如何将本地的一个新项目上传到远程仓库上新建的仓库中去

如何将本地的一个新项目上传到远程仓库上新建的仓库中去

git命令行将本地项目上传到仓库

初次使用git上传代码到github远程仓库

githe和github连接,上传

本地Git仓库和远程仓库的创建和关联及github上传(git push)时出现error: src refspec master does not match any解决办法