配置项目的git

只需要编辑项目根目录下的 .git/config 文件,其中 .git 为根目录下的子目录。当需要操作多个来源不同仓库的项目时,需要做这个设置,比如一个来自 github.com,一个来自私有仓库的。

% cat .git/config 
[core]
	repositoryformatversion = 0
	filemode = true
	bare = false
	logallrefupdates = true
	ignorecase = true
	precomposeunicode = true
[remote "origin"]
	url = https://github.com/eyjian/libmooon.git
	fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
	remote = origin
	merge = refs/heads/master
[user]
	name = eyjian
	email = [email protected]
  • 附:强制用远程仓库的覆盖本地
git fetch --all&&git reset --hard origin/BRANCH

# 示例 1
git fetch --all&&git reset --hard origin/main

# 示例 2
git fetch --all&&git reset --hard origin/master

如果是 Makefile 中,可如下书写:

fetch: # 强制用远程仓库的覆盖本地,运行时指定分支名,如:make fetch branch=main
	git fetch --all&&git reset --hard origin/$$branch
  • 分支名由main改为master
git branch # 显示所有分支(当前分支前会有一个星号“*”)
git checkout main # 切换到 main 分支
git branch -m main master # 将本地的 main 分支改名为 master
git push -u origin master # 将本地的 master 分支推送到远端仓库

注意默认的分支,需要上 git 管理端设置,不能通过 git 命令完成。

你可能感兴趣的:(git,git,Makefile)