0%

Git使用总结

上传本地代码到Github

  1. 准备工作
    安装github for windows客户端

  2. 上传代码

    1. 在自己的github账户上创建一个新的仓库(repository)

    2. 登录github for windows客户端,clone下来刚才创建的repository:

    3. 复制本地完整代码到clone下来的repository文件夹中

    4. github for windows客户端自动检测未上传的文件,勾选需要上传的文件,commit到master或者其他分支中

    5. 点击客户端右上角的Sync按钮

      至此,本地的代码就上传到了github上。

Git切换远程仓库地址

  1. 方法一:直接修改远程仓库地址

    1
    git remote set-url origin url
  2. 方法二:删除本地远程仓库地址,然后添加新的仓库地址

    1
    2
    git remote rm origin
    git remote add origin url
  3. 方法三:修改配置文件
    每个仓库在初始化时,都会有一个.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
  4. 查看远程仓库地址

    1
    git remote -v

合并两个不同的仓库

1
2
3
4
5
6
7
8
9
10
11
12
# 本地仓库oldRepo中添加远程仓库newRepo
git remote add newRepo https://github.com/shadow000902/newRepo.git
# 从远程仓库newRepo中拉取数据到本地仓库中
git fetch newRepo
# 将远程仓库newRepo中拉取的develop分支作为新分支checkout到本地,新分支名为 newRepo/develop
git checkout -b newRepo/develop newRepo/develop
# 切换回本地仓库oldRepo的develop分支
git checkout develop
# 将 newRepo/develop 分支合并入 develop 分支
git merge newRepo/develop
# 解决冲突并推送到远程
...