Git教程(11)把本地的项目传到远程
1.在远程建立仓库
得到远程仓库地址,如: https://github.com/paulboone/ticgit
2.进入到项目根目录,初始化一个本地仓库
$ git init
3.为本地仓库添加远程仓库
$ git remote add origin https://github.com/paulboone/ticgit
4.在项目根目录添加.gitignore 文件
GitHub 有一个十分详细的针对数十种项目及语言的 .gitignore
文件列表,你可以在 https://github.com/github/gitignore 找到它.
5.把本地代码加到本地仓库中
$ git add .
6.提交
$ git commit -am "import src"
7.如果远程仓库不空,要先pull远程仓库,空就跳过此步。
$ git pull origin master
如有冲突,解决它。如果报下面的错:
fatal: refusing to merge unrelated histories
可以用 --allow-unrelated-histories 参数
git pull origin master --allow-unrelated-histories
8.上传到远程服务器
$ git push -u origin master