testGitFile.txt$ sudo git init$ sudo git add *$ sudo git commit -m "one test file"二、在github上创建一个仓库,并在..._git 添加运程">
赞
踩
在本地仓库添加远程仓库,并同步远程仓库,步骤如下:
一、在本地创建一个目录,在目录在添加文件,并初始化仓库
$ mkdir testGit
$ echo "aaa">testGitFile.txt
$ sudo git init
$ sudo git add *
$ sudo git commit -m "one test file"
二、在github上创建一个仓库,并在上面写README文件
三、在本地添加远程
$ sudo git remote add origin https://github.com/hefrankeleyn/testGit
-- 检查远程仓库是否添加成功
$ sudo git remote -v
四、将本地仓库和远程仓库进行同步
执行下面的命令,远程仓库的文件被同步到本地
$ sudo git pull --allow-unrelated-histories origin master
五、将本地已经提交的文件同步到远程仓库
sudo git push origin master
此时,远程仓库已经有本地的文件了:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。