上传本地代码到Github
准备工作
安装github for windows客户端上传代码
在自己的github账户上创建一个新的仓库(repository)
登录github for windows客户端,clone下来刚才创建的repository:
复制本地完整代码到clone下来的repository文件夹中
github for windows客户端自动检测未上传的文件,勾选需要上传的文件,commit到master或者其他分支中
点击客户端右上角的Sync按钮
至此,本地的代码就上传到了github上。
Git切换远程仓库地址
方法一:直接修改远程仓库地址
1
git remote set-url origin url
方法二:删除本地远程仓库地址,然后添加新的仓库地址
1
2git remote rm origin
git remote add origin url方法三:修改配置文件
每个仓库在初始化时,都会有一个.git
的隐藏目录,修改其中的config
文件中的url
1
2
3
4
5
6
7
8
9
10
11
12
13[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[remote "origin"]
url = git://github.com/robbyrussell/oh-my-zsh.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master查看远程仓库地址
1
git remote -v
合并两个不同的仓库
1 | 本地仓库oldRepo中添加远程仓库newRepo |