本操作说明是先有代码,后来创建git仓库,然后把本地代码提交到远程仓库的操作步骤:1.初始化在当前你要提交的目录下执行git init2.创建远程仓库名称git remote add gitOrigin https://github.com/***.git3.告诉git你是谁git config -...
分类:
其他好文 时间:
2015-03-06 10:27:11
阅读次数:
198
http://zyip.github.io/facemaker/indexecho "hello world" >>hello.htmgit initgit add hello.htmgit commit -m "add hello.htm"git remote add origin https:/...
分类:
其他好文 时间:
2015-03-04 22:41:20
阅读次数:
143
create git space
git init
set the local cofig
git config --global user.name "xx"
git config --global user.email "xx@hotmail.com"
set the remote url
git remote add origin https://git.oschina.net/x...
分类:
其他好文 时间:
2015-02-25 15:40:27
阅读次数:
158
使用git pull的时候收到以下信息:error: there are still refs under 'refs/remotes/origin/xxxx'From 10.1.25.57:yyyy/zzzz_server! [new branch] xxxxx -> origin/xxx (u....
分类:
其他好文 时间:
2015-02-11 20:23:32
阅读次数:
460
python 3.3 + django 1.7一、创建新应用$ rhc app create -a mynewapp -t python-3.3二、在新建的目录里添加git库$ cd mynewapp$ git remote add upstream -m master git://github.c...
分类:
其他好文 时间:
2015-02-07 00:33:46
阅读次数:
285
先上去github 或者任意托管的网站。注册账号,新建仓库,在本地运行Xcode 新建工程,新建工程的时候 勾上本地 的仓库,然后 在本地的项目根目录执行下边的命令:git remote add origin https://github.com/littleniu/zbar-.git //和远程....
分类:
其他好文 时间:
2015-02-05 10:45:35
阅读次数:
113
基本操作练习 https://try.github.io
git init 初始化仓库
git status 查看状态
git add '*.txt' 将文件加入管理
git commit -m "说明" 提交变动
git log 查看提交的历史记录
git remote add origin ht...
分类:
其他好文 时间:
2015-01-30 15:27:56
阅读次数:
166
当你从远程仓库克隆时,实际上Git自动把本地的master分支和远程的master分支对应起来了,并且,远程仓库的默认名称是origin。要查看远程库的信息,用git remote:$ git remoteorigin或者,用git remote -v显示更详细的信息:$ git remote -v...
分类:
其他好文 时间:
2015-01-27 12:58:24
阅读次数:
114
git initgit add .vi .gitignore /*将代码区蓝色字体的内容*/git commit -m "初次建立"git remote add origin https://github.com/User/Qioa1.gitgit push -u origin mastergit ...
分类:
其他好文 时间:
2015-01-25 23:51:56
阅读次数:
224
在LINUX上创建GIT服务器 http://lionest.iteye.com/blog/1447310如果输入$ git remote add origingit@github.com:djqiang(github帐号名)/gitdemo(项目名).git提示出错信息:fatal: remote...
分类:
其他好文 时间:
2015-01-20 23:30:43
阅读次数:
289