git 新建仓库

Command line instructions
You can also upload existing files from your computer using the instructions below.

Git global setup
git config --global user.name "XXX"
git config --global user.email "[email protected]"

Create a new repository
git clone [email protected]:path/test.git
cd aliyun_fiels
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

Push an existing folder
cd existing_folder
git init
git remote add origin [email protected]:path/test.git
git add .
git commit -m "Initial commit"
git push -u origin master

Push an existing Git repository
cd existing_repo
git remote rename origin old-origin
git remote add origin [email protected]:path/test.git
git push -u origin --all
git push -u origin --tags

原文地址:https://www.cnblogs.com/ywhyme/p/11843359.html

时间: 2024-10-12 05:57:41

git 新建仓库的相关文章

Git新建仓库时报:Win32 error 487

Git新建仓库时报:Win32 error 487: Couldn't reserve space for cygwin's heap, Win32 error 0 解决方法: 1.进入本地Git安装目录下的bin目录,比如我的是: C:\Users\zhangwwa\AppData\Local\Atlassian\SourceTree\git_local\bin 2.观察是否有rebase.exe和msys-1.0.dll两个文件,如果有,说明进入的目录正确 3.先执行 tasklist /m

git新建仓库

克隆地址 git clone https://git.oschina.net/dy09/dy_shop.git 在克隆下来的文件夹里面进行下面的操作1.git add -A 2.git commit -m '第一次提交' 3.git push 4.邮箱 5.名字 7.git push

2017.6.30 使用git新建项目、仓库并拉取、提交代码

1.在码云上新建一个项目rms 2.在本地指定位置新建仓库,生成.git文件夹 3.同步远程仓库,并拉取最新代码 远程仓库默认名为orgin.可以修改,这里就是用默认名了. 注意:这里使用ssh方式的路径,而不是https,这样就不用一直输入密码了.因为之前配置了ssh公钥. 刚刚做的就是把本地仓库 /lyh/file/git_repostory/rms 对应成远程仓库. 注意:一个仓库有一个.git文件. 所以如果有另一个项目aas,要新建的层次是这样的: 然后rms和aas里再是: 这里要注

git远程仓库

git远程仓库 到目前为止,我们已经掌握了如何在Git仓库里对一个文件进行时光穿梭,你再也不用担心文件备份或者丢失的问题了. 可是有用过集中式版本控制系统SVN的童鞋会站出来说,这些功能在SVN里早就有了,没看出Git有什么特别的地方. 没错,如果只是在一个仓库里管理文件历史,Git和SVN真没啥区别.为了保证你现在所学的Git物超所值,将来绝对不会后悔,同时为了打击已经不幸学了SVN的童鞋,本章开始介绍Git的杀手级功能之一(注意是之一,也就是后面还有之二,之三……):远程仓库. Git是分布

Git 本地仓库(Repository)详解

大纲: 一.前言 二.概述 三.在Windows上安装Git 四.创建本地仓库 五.本地仓库管理详解 六.总结 注,测试机 CentOS 5.5 x86_64,Git 服务器版本:git version 1.8.2.1,客户端版本:git version 1.9.2.msysgit.0.所有软件请到这里下载:http://msysgit.github.io/. 一.前言 本来呢,其实呢.我以为Git也就几个命令,没什么难的.于是就到网上找了些文章看看,发现这些文章难得不知道该说什么好.不是简单的

Git 创建仓库

本文将为大学介绍如何创建一个远程的Git仓库.您可以使用一个已经存在的目录作为Git仓库或创建一个空目录. 使用您当前的目录作为Git仓库,我们只需要使它初始化. git init 使用我们指定目录作为Git仓库. git init newrepo 初始化后,在当前目录下会出现一个名为.git 的目录,所有Git需要的数据和资源都存放在这个目录中. 如果当前目录下的几个文件想要纳入版本控制,需要先用git add 命令告诉Git开始对这些文件进行跟踪,然后提交: $ git add *.c $

GitHub如何新建仓库和提交代码

在https://github.com/注册自己的账号,记住用户名和密码.该步骤略.这里主要介绍如何如何新建仓库和提交代码. 一.GitHub中新建仓库 首先进入到自己的主页https://github.com/your_username 将上面的“your_username”替换成你的用户名. 如上所示,在该页面可以找到“Repositories”按钮,点击该按钮,出现下面页面: 2. 点击上图中的“New”按键,出现: 上面红色部分是我的用户名,每个人的肯定不一样.其他的必须填的是Repos

Git新建本地分支与远程分支关联问题:git branch --set-upstream【转】

本文转载自:http://blog.csdn.net/netwalk/article/details/21088405 Git新建本地分支与远程分支关联问题:git branch --set-upstream git在本地新建分支, push到remote服务器上之后,再次pull下来的时候,如果不做处理会报以下提示: [html] view plain copy You asked me to pull without telling me which branch you want to m

Git新建本地分支与远程分支关联问题:git branch --set-upstream

Git新建本地分支与远程分支关联问题:git branch --set-upstream git在本地新建分支, push到remote服务器上之后,再次pull下来的时候,如果不做处理会报以下提示: You asked me to pull without telling me which branch you want to merge with, and 'branch.production.merge' in your configuration file does not tell m