git 新建仓库

Posted ywhyme

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 "test@test.com"

Create a new repository
git clone git@git.test.net: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 git@git.test.net: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 git@git.test.net:path/test.git
git push -u origin --all
git push -u origin --tags

以上是关于git 新建仓库的主要内容,如果未能解决你的问题,请参考以下文章

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

Git新建分支,分支合并,版本回退详解

如何从远程git服务器上拉取一个新建的git项目

如何从远程git服务器上拉取一个新建的git项目?

git提交代码到远程仓库github

git项目初次push提示error: failed to push some refs to https://gitee.com/xxxx/gittest.git’解决方案 --九五小庞(代码片段