添加远程仓库
- 创建一个空白文件夹
mkdir mycode
- 初始化仓库
git init
- 仓库配置
在配置(.git/config
)中添加配置如下:
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[receive]
denyCurrentBranch = ignore
推送本地仓库
- 执行如下命令推送
git push -u --repo=user@server:/git/mycode --all
- 再执行如下命令
git reset --hard
至此就可以到远程仓库看到正常的提交和文件了~